Hello: Could you please suggest the good JDBC-ODBC bridge that is not expensive for production use? Thanks in advance, Sarah
Dave Vick
Ranch Hand
Joined: May 10, 2001
Posts: 3244
posted
0
Sarah What's wrong with the one that comes with the SDK? It is automatically installed for you and is in your class path along with the rest of the standard APIs. Just use: Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); To instantiate it and have it register itself with the driver manager.
Dave
Jag Sharma
Greenhorn
Joined: Nov 09, 2001
Posts: 10
posted
0
I want to do the same the Sarah wants to do. I am getting the following error: java.sql.SQLException: [Microsoft][ODBC Driver Ma nager] Data source name not found and no default driver specified Thanks Jag
Dave Vick
Ranch Hand
Joined: May 10, 2001
Posts: 3244
posted
0
What does your code look like?
sarah Marsh
Ranch Hand
Joined: Mar 06, 2001
Posts: 282
posted
0
Hello Dave,
What's wrong with the one that comes with the SDK? It is automatically installed for you and is in your class path along with the rest of the standard APIs.
How to do the config on Solaris? I made it works on NT but Solaris, I got "No suitable driver"? Please help! Sarah
Dave Vick
Ranch Hand
Joined: May 10, 2001
Posts: 3244
posted
0
Sarah Do you have the ful SDK loaded not just a JVM? Make sure your class path and everything is correct including case on Solaris.
sarah Marsh
Ranch Hand
Joined: Mar 06, 2001
Posts: 282
posted
0
Thanks all. I had the running time library setting up wrong. Thanks again!