How To - Connect to dbase tables on the server
Hi everybody,
I hope someone will be able to help me here.
I was able to connect to my dbase tables by using
String url = "jdbc:odbc:DRIVER = {Microsoft dbase Driver(*.dbf)}; DBQ = C:\\TEST\\SRC;";
Connection conn = DriverManager.getConnection(url);
Now I want to replace the physical path C:\\Test\\src with url \\localhost\webapp\src
I dont think I can just say DBQ = \\localhost\webapp\src but I am sure there is a way to connect to tables that are located on the server . Could someoone please help me with this.
Thank you very very much.

