Progress JDBC Problem on Linux

rohithadg

New Member
Hi all,

I have Progress 91d database in linux. now I'm trying to get data frm it.
progress comes with jdbc driver. I wanna set the paths for it.
I put jdbc.jar and progress.jar into /usr/java/jdk1.5.0_06/jre/lib/ext.
I set paths as follows..

JAVA_HOME=/usr/java/jdk1.5.0_06; export JAVA_HOME
CLASSPATH=/usr/dlc91d/java/progress.jar:/usr/dlc91d/java/jdbc.jar;export CLASSPATH
LD_LIBRARY_PATH=/usr/dlc91d/lib; export LD_LIBRARY_PATH

and my java code :

Class.forName("com.progress.sql.jdbc.JdbcProgressDriver");
con = DriverManager.getConnection("jdbc:jdbcprogress:T:localhost:4502:dbkon","user", "pwd");

but getting following exception

No suitable driver

pls help me to solve this prob

thanks

Rohitha
 
Hi,

Did you already take a look at KB 19308: http://tinyurl.com/oqlj6?

Furthermore, the java version supported for progress 9.1d is 1.3.something. 9.1E which is build on jvm version 1.3.1 can run on 1.4.1 but the jdbc drivers won't work on jvm1.4. So since you have version 1.5.0_06, that's probably your problem.

Regards,

Casper.
 
Back
Top