JDBC connection getting dropped

Posted by LegacyUser on 15-Nov-2001 10:30

Hi all,

I am having a problem connecting to progress V9.1c database from my Java client.

I can connect to the database fine but the connection seems to get dripped immidiatley as when I try to execute a statement I get the following error:

Failed to connect to DB

:Table/View/Synonym not found (7519)

I have connected using the Progress client and everything is fine.

Help!!!! Anyone???

(Code below)

-

//load the database driver

Class.forName("com.progress.sql.jdbc.JdbcProgressDriver") ;

//set up a connection to the database

DriverManager.getConnection("jdbc:JdbcProgress:T:localhost:8222:CHRIS_TEST", "user", "pass");

PreparedStatement ps = myConn.prepareStatement("SELECT * FROM test.people") ;

ResultSet myResultSet = ps.executeQuery() ;

-

All Replies

This thread is closed