Subject | Re: [IB-Java] interclient and JRun pooled connections |
---|---|
Author | Alexander Sokolov |
Post date | 2000-08-03T14:24:36Z |
Peter Wilkinson wrote:
Connection con=DriverManager.getConnection(dbURL,userName,passwd);
con.setAutoCommit(true);
I did not try this in a servlet but it works well for me in case of
RMI server, which comminicates with a database using interclient
Alexander
>Try
> Hi,
>
> I've just set up JRun to use Interclient in pools. I am having some problems
> getting the sequence of commits correct so that my servlet will see and
> commits made since the JRun server has started.
>
> Does anyone know what I need to do to get Interclient to work in a pool such
> that it sees all current committed transactions???
Connection con=DriverManager.getConnection(dbURL,userName,passwd);
con.setAutoCommit(true);
I did not try this in a servlet but it works well for me in case of
RMI server, which comminicates with a database using interclient
Alexander