Automatic transactions and datsource's connection pool ("Closed connection" SQLException)

2008-12-18 Thread Chema
Hi: I'm using iBatis 2.3.0 framework in an application deployed on Sun Java Application Server 7.1 (release 1) iBatis gets connection objects from a Datasource's pool defined in AS. All work fine. But we had to upgrade the AS to release 6 and , suddenly, a "Closed connection" SQLException is thr

Re: Is there anyway to change the suffix of the exmaple class?

2008-12-18 Thread Jeff Butler
Dan is correct that with the current version of Ibator you need to override IntrospectedTable to accomplish this. I'll add something to the plugin API to make this easier in the next release. Jeff Butler On Thu, Dec 18, 2008 at 6:47 AM, Dan Turkenkopf wrote: > I think you'll need to extend the

Re: Error Calling SP on SQL Server

2008-12-18 Thread nmansur
I m having similar problem did you find the solution for this ? pls share Tx, --Naveen snehalkgandhi wrote: > > Hi, > I'm trying to call an Stored Procedure(SP) in SQL Server 2000. The SP > takes in 2 parameters and returns a resultset. I tried the searching for > the jdbcType="??" for the

Re: Is there anyway to change the suffix of the exmaple class?

2008-12-18 Thread Dan Turkenkopf
I think you'll need to extend the IntrospectedTable class and override the getExampleType method. This isn't something that can be easily done through the plugin mechanism. Instructions for extending Ibator can be found here: http://ibatis.apache.org/docs/tools/ibator/reference/extending.html Ho