Subject | Re: Failure on PreparedStatement |
---|---|
Author | Roman Rokytskyy |
Post date | 2003-04-04T20:48:15Z |
> Connection con = DriverManager.getConnection( url, info );In this case you have to correct your code. You cannot close
> con.setAutoCommit( false );
connection that is not in auto-commit mode without _explicitly_
calling commit() or rollback(). But I will check your test case too,
why does it fail. I suspect that this is because you use BLOBs (even
SUB_TYPE 1).
Thanks!
Roman