Help Connection with Paradox using BDE.
843859Jul 6 2009 — edited Nov 20 2014Hi, i have some data stored in a .db files that are using the Paradox DB and i want it to make a connection so i can update the data.
Im using this code:
try {
//Registrando o driver:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
Connection con = DriverManager.getConnection("jdbc:odbc:Inventory", "", "");
Statement stmt = (Statement) con.createStatement();
} catch (Exception e) {
System.out.println(e);
}
What should i put on the Connection String? Do i have to download the .jar connection file? Where would i say that i want to use the BDE to make the connection? I havent managed to find the .jar connection file.
Can someone enlight me please?
thank you,