Subject Re: [IB-Java] interclient and JRun pooled connections
Author Alexander Sokolov
Peter Wilkinson wrote:
>
> 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???

Try

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