hi guys,
pls help me to connect to my database using access this is my syntax but..
import java.sql.*;
public class ptime_database {
Class.forName(DriverImplementationClass);
String url = "jdbc

dbc:POS";
String user="ashin";
String password ="ashin";
Connection connection = DriverManager.getConnection(url,user,password);
}
my error is the dot (.) before forName and the DriverImplementationClass...
what will i do so that i can connect to my database....
and am i right that i put my database in the same folder where my java class also located?
tnx.. i need ur answer asap..