From 16a30346c86590fbdcd83cacd2a0a9dbd2cd00dc Mon Sep 17 00:00:00 2001 From: Barry Lind Date: Tue, 4 Feb 2003 09:20:12 +0000 Subject: Patch from Nic Ferrier to add support for result sets being cursor based so that rows can be fetched incrementally. This is enabled by using setFetchSize() --- src/interfaces/jdbc/org/postgresql/util/Serialize.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interfaces/jdbc/org/postgresql/util/Serialize.java') diff --git a/src/interfaces/jdbc/org/postgresql/util/Serialize.java b/src/interfaces/jdbc/org/postgresql/util/Serialize.java index 48d18ef02e..d4bf01fb64 100644 --- a/src/interfaces/jdbc/org/postgresql/util/Serialize.java +++ b/src/interfaces/jdbc/org/postgresql/util/Serialize.java @@ -405,7 +405,7 @@ public class Serialize if (Driver.logDebug) Driver.debug("Serialize.store: " + sb.toString() ); - ResultSet rs = ((org.postgresql.jdbc1.AbstractJdbc1Connection)conn).ExecSQL(sb.toString()); + ResultSet rs = ((org.postgresql.jdbc1.AbstractJdbc1Connection)conn).execSQL(sb.toString()); // fetch the OID for returning if (update) -- cgit v1.2.1