On Wed, Aug 27, 2003 at 12:36:24PM -0700, Barry Lind wrote:
> Toby,
>
> You need to have autocommit turned off in order to use large objects.
> If I add a call to setAutocommit(false) for the connection everything
> works fine.
Does this imply that setDefaultAutoCommit is broken, then?
> > Jdbc3ConnectionPool source = new Jdbc3ConnectionPool();
> > source.setServerName("ash");
> > source.setDatabaseName("adserver");
> > source.setUser("web");
> > source.setPassword("web");
> > source.setDefaultAutoCommit(false);
> > conn = source.getConnection();
> > System.out.println(conn.getAutoCommit());
-O