D
DiscoStu
Hello Everyone,
Im writing a java server that uses the jakarta pooling classes to
store database connections. Im then trying to use those connections to
send blocks of data to the SQL Server. When I set it to
autoCommit(false); it throws this exception on me:
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for
JDBC]Can't start manual transaction mode because there are cloned
connections.
I have WAY to many individual insert statements to do them one-by-one,
how can I use my database connection pool and still be able to send
big blocks of insert statements and only have them processed on the
SQLServer when they ALL get there.... not receive-process
receive-process... etc.....
Thanks
Im writing a java server that uses the jakarta pooling classes to
store database connections. Im then trying to use those connections to
send blocks of data to the SQL Server. When I set it to
autoCommit(false); it throws this exception on me:
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for
JDBC]Can't start manual transaction mode because there are cloned
connections.
I have WAY to many individual insert statements to do them one-by-one,
how can I use my database connection pool and still be able to send
big blocks of insert statements and only have them processed on the
SQLServer when they ALL get there.... not receive-process
receive-process... etc.....
Thanks