|
Take a look at AS400JDBCConnectionPool in JTOpen 4.x and try using that. Your getConnection() problem stems from the fact that AS400JDBCConnectionPoolDataSource descends from AS400JDBCDataSource and does not override the getConnection() methods there. The source has been changed considerably in AS400JDBCConnectionPoolDataSource and AS400JDBCPooledConnection. You probably have an earlier version on the AS/400; That's the only reason I can think of why it worked there. Let us know how it goes. Joe Sam Joe Sam Shirah - http://www.conceptgo.com conceptGO - Consulting/Development/Outsourcing Java Filter Forum: http://www.ibm.com/developerworks/java/ Just the JDBC FAQs: http://www.jguru.com/faq/JDBC Going International? http://www.jguru.com/faq/I18N Que Java400? http://www.jguru.com/faq/Java400 ----- Original Message ----- From: "Patrick L Archibald" <Patrick.Archibald@xxxxxxxxxxxxx> To: "Java Programming on and around the iSeries / AS400" <java400-l@xxxxxxxxxxxx> Sent: Tuesday, July 29, 2003 1:07 PM Subject: Re: dataSource.getConnection jt400 > Hey Joe Sam > > You're right on target. I have a class I call ObjectServer that looks up > the OS on creation, creates the DataSource accordingly and returns it > via ObjectServer.getDataSource(). The only problem I'm having is the > the AS400JDBCConnectionPoolDataSource.getConnection() doesn't appear to > return a pooled connnection. I have to do the following to get a pooled > connection from the AS400JDBCConnectionPoolDataSource. > > AS400JDBCConnectionPoolDataSource dataSource = new > AS400JDBCConnectionPoolDataSource("myserver.com"); > dataSource.setUser("myUser"); > dataSource.setPassword("myPassword"); > AS400JDBCPooledConnection pooledConnection = (AS400JDBCPooledConnection) > dataSource.getPooledConnection(); > Connection connection = pooledConnection.getConnection(); > > Am I missing something? > > Thanks for the help! > > PLA >
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.