Problem with conexion JDBC

sekero

New Member
Hello, I have a problem with the conexion between java aplication and database progress, for do this i´m using a jdbc driver. The bridge jadb.jdbcProgress run correctly, but the load of the driver fail.
The code is this:

Class.forName ( "com.progress.sql.jdbc.JdbcProgressDriver" );
String url = "jdbc:jdbcprogress:T:localhost:1000:Sport";
String myuserid = "sysprogress";
String mypassword = "s";
conexion = DriverManager.getConnection ( url, myuserid, mypassword );

The class form is well, the error is java.sql.SQLException: No suitable driver.
In the control panel in ODBC the conexion is establish with the same parameters that url but in the code of java not run. The librarys jdbc.jar and progress.jar is in the claspath of java but not run.

Please help me.
 
Top