hi,
i am using ur driver for trial version.there is some problem when i start my tomcat service from windows.it gives the error as "no suitable driver."but the same works fine when i starts the tomcat server from my Eclipse.
plz reply soon.where is the problem and what should be the url for connection.
|
Copy that Access_JDBC30.jar into WEB-INF/lib directory.
If you know an absolute path, you can use:
"jdbc:access:///c:/aDirectory/../sql/file_name.mdb" for Windows
Or
"jdbc:access:////sys/data/sql/file_name.mdb" for Linux/Unix's sys volumn.
a relative sample:
"jdbc:access:///./../sql/file_name.mdb"
You can use "jdbc:access:///../sql/file_name.mdb" or "jdbc:access:///"+request.getRealPath("../")+"/sql/file_name.mdb".
|
thanks for ur help.i got the solution.
|