hui
i want connect my database access with jsp pages; but i dont know how to proceed
my jsp pages and the file table.mdb are in the server and i will create an odbc connection, i find this code in the net but i dont know if it's right and i dont know where can i find the uid and the password pwd :
try {
String query = new String();
ResultSet rs = null;
Connection con = null;
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
//open a connection to the database
con = DriverManager.getConnection("jdbc:odbc:acc",uid,pwd);
Statement stmt = con.createStatement();
...
}
thanks
i want connect my database access with jsp pages; but i dont know how to proceed
my jsp pages and the file table.mdb are in the server and i will create an odbc connection, i find this code in the net but i dont know if it's right and i dont know where can i find the uid and the password pwd :
try {
String query = new String();
ResultSet rs = null;
Connection con = null;
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
//open a connection to the database
con = DriverManager.getConnection("jdbc:odbc:acc",uid,pwd);
Statement stmt = con.createStatement();
...
}
thanks
