diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/PGStatement.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/PGStatement.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGStatement.java b/src/interfaces/jdbc/org/postgresql/PGStatement.java index 1295afbe5a..a226246a81 100644 --- a/src/interfaces/jdbc/org/postgresql/PGStatement.java +++ b/src/interfaces/jdbc/org/postgresql/PGStatement.java @@ -3,7 +3,7 @@ package org.postgresql; import java.sql.*; -/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGStatement.java,v 1.3 2002/07/23 03:59:55 barry Exp $ +/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGStatement.java,v 1.4 2002/09/02 03:07:36 barry Exp $ * This interface defines PostgreSQL extentions to the java.sql.Statement interface. * Any java.sql.Statement object returned by the driver will also implement this * interface @@ -18,4 +18,8 @@ public interface PGStatement */ public long getLastOID() throws SQLException; + public void setUseServerPrepare(boolean flag); + + public boolean isUseServerPrepare(); + } |