Hi,
So far, I used to connect to Access database from my JSP that is in windows based computer.
I added USER DSN in ODBC as Planningdb and used these statements in my jsp for getting connection to the Access database
Now, I am trying to connect to a Ms Access database in Windows based Computer through my JSP pages which are in Linux computer. Apache and Tomcat servers are also in Linux based computer.
In that case what should be the database connectivity string?
please help,
thanks,
nubee
So far, I used to connect to Access database from my JSP that is in windows based computer.
I added USER DSN in ODBC as Planningdb and used these statements in my jsp for getting connection to the Access database
Code:
private String dbDriver="sun.jdbc.odbc.JdbcOdbcDriver";
Class.forName(dbDriver);
conn=DriverManager.getConnection("jdbc:odbc:planningdb","", "");
In that case what should be the database connectivity string?
please help,
thanks,
nubee