Hi,
do you have the possibility to debug the code ?
If yes, in the BaseObject, there should be a generated method like
public void save(String dbName) throws TorqueException
{
Connection con = null;
try
{
con = Transaction.begin(dbName);
save(con);
Transaction.commit(con);
}
catch(TorqueException e)
{
Transaction.safeRollback(con);
throw e;
}
}
which should be called if you call the save() method.
Can you provoke the error and see whether the safeRollback is executed ?
Thomas
Roel van Dijk <[EMAIL PROTECTED]> schrieb am 08.07.2005 17:40:19:
> On 7/8/05, Thomas Fischer <[EMAIL PROTECTED]> wrote:
> > are you using the save() method or the save(Connection) method ?
>
> I'm using save(), and that's why I think this is so weird the
> connection pool gets filled with these hanging connections.. Any
> ideas?
>
> --
> Roel -- [EMAIL PROTECTED]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]