RE: getting exception when trying to close connection

2002-06-12 Thread Christian J. Dechery
to the given database URL. In properties, you can specify driver settings. Zak -Original Message- From: Christian J. Dechery [ mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 12:03 PM To: [EMAIL PROTECTED] Subject: RE: getting exception when trying to close connection ok

RE: getting exception when trying to close connection

2002-06-11 Thread Zachary Kuhn
It would be halpful to see the declaration of con, and the type of driver you are using -Original Message- From: Christian J. Dechery [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 11:41 AM To: [EMAIL PROTECTED] Subject: getting exception when trying to close connection I

RE: getting exception when trying to close connection

2002-06-11 Thread Christian J. Dechery
ok... there you go: public DAOFundos(Esquema esq) { if( esq==null ) { esq = esquemaDefault; } try { Class.forName( esq.getDriver() ); con = DriverManager.getConnection(esq.getUrl(), esq.getUser(), esq.getPassword()); } catch(ClassNotFoundException cnf) {

RE: getting exception when trying to close connection

2002-06-11 Thread Zachary Kuhn
, you can specify driver settings. Zak -Original Message- From: Christian J. Dechery [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 12:03 PM To: [EMAIL PROTECTED] Subject: RE: getting exception when trying to close connection ok... there you go: public DAOFundos(Esquema esq