summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/util/Serialize.java
diff options
context:
space:
mode:
authorBarry Lind <barry@xythos.com>2003-02-04 09:20:12 +0000
committerBarry Lind <barry@xythos.com>2003-02-04 09:20:12 +0000
commit16a30346c86590fbdcd83cacd2a0a9dbd2cd00dc (patch)
treea555d2560764362bf58c0081187607c9094e1510 /src/interfaces/jdbc/org/postgresql/util/Serialize.java
parent2d1f94054259d3237e678d89ca9e57305a6a3997 (diff)
downloadpostgresql-16a30346c86590fbdcd83cacd2a0a9dbd2cd00dc.tar.gz
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()
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/util/Serialize.java')
-rw-r--r--src/interfaces/jdbc/org/postgresql/util/Serialize.java2
1 files changed, 1 insertions, 1 deletions
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)