> Are there any guidelines for using a connection directly like this?
> Or is it really not meant for public use?
No.
You could try the following:
Obtain a new PB from the PBF
Call PB.beginTransaction()
.... do some other stuff with PB
Call PB.getConnectionManager()
Call CM.getConnection()
as you described
.... do your connection operation
don't call con.begin()/con.commit().
Do not call con.close()!
Do not call CM.releaseConnection()!
.... do some other stuff with PB
Call PB.commitTransaction()
PB.close();
Don't hold the connection instance!
Do this for every method call.
Don't know if this will work for you.
HTH
Armin
>
> Thanks for the quick responses...
>
> Joe
>
> --
> --
> * Joe Germuska { [EMAIL PROTECTED] }
> "It's pitiful, sometimes, if they've got it bad. Their eyes get
> glazed, they go white, their hands tremble.... As I watch them I
> often feel that a dope peddler is a gentleman compared with the man
> who sells records."
> --Sam Goody, 1956
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>
>
>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>