Hi,
How can I connect to a database that is stored on my local hard drive? I am using the java.sql package as in the following example:
Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection ("jdbc:odbc://localhost/????", username, password);
st = con.createStatement();
What should go where the question marks are (if indeed this is the right approach at all)?
Thanks in advance,
Dan