Skip to Main Content

Java Database Connectivity (JDBC)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Help Connection with Paradox using BDE.

843859Jul 6 2009 — edited Nov 20 2014
Hi, 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,
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 5 2009
Added on Jul 6 2009
2 comments
288 views