diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/PGStatement.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/PGStatement.java | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGStatement.java b/src/interfaces/jdbc/org/postgresql/PGStatement.java deleted file mode 100644 index 5bfad1ba7ac..00000000000 --- a/src/interfaces/jdbc/org/postgresql/PGStatement.java +++ /dev/null @@ -1,43 +0,0 @@ -/*------------------------------------------------------------------------- - * - * PGStatement.java - * 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 - * - * Copyright (c) 2003, PostgreSQL Global Development Group - * - * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/jdbc/org/postgresql/PGStatement.java,v 1.8 2003/11/29 19:52:09 pgsql Exp $ - * - *------------------------------------------------------------------------- - */ -package org.postgresql; - - -import java.sql.*; - -public interface PGStatement -{ - - /** - * Returns the Last inserted/updated oid. - * @return OID of last insert - * @since 7.3 - */ - public long getLastOID() throws SQLException; - - /** - * Turn on the use of prepared statements in the server (server side - * prepared statements are unrelated to jdbc PreparedStatements) - * @since 7.3 - */ - public void setUseServerPrepare(boolean flag) throws SQLException; - - /** - * Is this statement using server side prepared statements - * @since 7.3 - */ - public boolean isUseServerPrepare(); - -} |