Thanks, Jeff. I'm not finding a getConnection method in the ConnectionLogProxy class. Is that because I'm using iBATIS 2.2.0? If so, is there another way to get the underlying Connection object?
On 1/24/08, Jeff Butler <[EMAIL PROTECTED]> wrote: > > This comes up a lot! I just added a WIKI page describing the process: > > > http://opensource.atlassian.com/confluence/oss/pages/viewpage.action?pageId=15597591 > > Jeff Butler > > > > On Jan 24, 2008 10:03 AM, Hugh Ross <[EMAIL PROTECTED]> wrote: > > > Can anyone provide some sample code for this? > > > > I tried, but seemed to be blocked by $proxy objects or odd looking > > com.ibm.db2.jcc.b.b objects... > > > > For example, this did not work for me: > > > > java.sql.Connection conn = sqlMapClient.getCurrentConnection(); > > > > if (conn instanceof com.ibm.db2.jcc.DB2Connection ) > > { > > com.ibm.db2.jcc.DB2Connection db2conn = ( > > com.ibm.db2.jcc.DB2Connection)conn; > > db2conn.setDB2ClientApplicationInformation > > ("SomethingUsefulHere"); > > } > > > > I also tried getting the DataSource 1st. > > > > Thanks! > > > >