JSP and Microsoft Visual FoxPro Database
Hi!
I am developing a website in JSP, this is placed on a linux server. I want to connect to the FoxPro databasefiles(*.dbf) on another server.
How can i do this?
I've tried this connectionstring, but it only works on my local machine that runs on Windows XP:
Connection c = DriverManager.getConnection("jdbc:odbc:Driver={Microsoft Visual FoxPro Driver};UID=;PWD=;SourceDB=" + db + ";SourceType=DBF;Exclusive=No;BackgroundFetch=Yes;Collate=Machine;Null=Yes;Deleted=Yes;");
This connection string is not usable on the server where the JSP-page runs.