Index: org/postgresql/core/v3/SimpleParameterList.java =================================================================== RCS file: /cvsroot/jdbc/pgjdbc/org/postgresql/core/v3/SimpleParameterList.java,v retrieving revision 1.18 diff -c -r1.18 SimpleParameterList.java *** org/postgresql/core/v3/SimpleParameterList.java 4 Feb 2010 00:48:47 -0000 1.18 --- org/postgresql/core/v3/SimpleParameterList.java 20 Mar 2010 19:39:04 -0000 *************** *** 155,161 **** p.append('\''); try { ! p = Utils.appendEscapedLiteral(p, param, protoConnection.getStandardConformingStrings()); } catch (SQLException sqle) { // This should only happen if we have an embedded null // and there's not much we can do if we do hit one. --- 155,161 ---- p.append('\''); try { ! p = Utils.appendEscapedLiteral(p, param, standardConformingStrings); } catch (SQLException sqle) { // This should only happen if we have an embedded null // and there's not much we can do if we do hit one.