CVSROOT: /cvsroot
Module name: pgsql
Changes by: davec@postgresql.org 02/03/20 22:20:30
Modified files:
src/interfaces/jdbc/org/postgresql/core: QueryExecutor.java
Added files:
src/interfaces/jdbc/org/postgresql/core: QueryExecutor2.java
Log message:
Two versions of QueryExecutor, currently only version 2 works 100%
these versions adhere to the backend protocol better than previous version
fixes problem when an error occurs on the backend, and the connection is still used
previous versions were throwing an exception half way through the protocol, leaving it
indeterminate.
also removes empty query code, should speed things up a bit