From: Dave Cramer Date: Tue, 4 Feb 2003 11:01:52 +0000 (+0000) Subject: Applied Kris Jurkas patch to fix rollback and SQLException X-Git-Tag: REL7_4_BETA1~1109 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=985e551b486647a16c880c01e41cabd37855ecb8;p=thirdparty%2Fpostgresql.git Applied Kris Jurkas patch to fix rollback and SQLException --- diff --git a/src/interfaces/jdbc/org/postgresql/core/QueryExecutor.java b/src/interfaces/jdbc/org/postgresql/core/QueryExecutor.java index 7193a8a615e..8285dc14148 100644 --- a/src/interfaces/jdbc/org/postgresql/core/QueryExecutor.java +++ b/src/interfaces/jdbc/org/postgresql/core/QueryExecutor.java @@ -16,7 +16,7 @@ import org.postgresql.jdbc1.AbstractJdbc1Statement; *

The lifetime of a QueryExecutor object is from sending the query * until the response has been received from the backend. * - * $Id: QueryExecutor.java,v 1.18 2003/02/04 09:20:08 barry Exp $ + * $Id: QueryExecutor.java,v 1.19 2003/02/04 11:01:52 davec Exp $ */ public class QueryExecutor @@ -189,14 +189,16 @@ public class QueryExecutor */ private void sendQuery() throws SQLException { + for ( int i = 0; i < m_binds.length ; i++ ) + { + if ( m_binds[i] == null ) + throw new PSQLException("postgresql.prep.param", new Integer(i + 1)); + } try { pg_stream.SendChar('Q'); for (int i = 0 ; i < m_binds.length ; ++i) { - if (m_binds[i] == null) - throw new PSQLException("postgresql.prep.param (" + i + ")", new Integer(i + 1)); - pg_stream.Send(connection.getEncoding().encode(m_sqlFrags[i])); pg_stream.Send(connection.getEncoding().encode(m_binds[i].toString())); }