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.

[592 byte] By [JElenaa] at [2007-11-26 17:40:48]
# 1
I'm not sure about this. However, you can try with 127.0.0.1 which will point to the local machine!
jintokla at 2007-7-9 0:08:59 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...