diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/PGStatement.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/PGStatement.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGStatement.java b/src/interfaces/jdbc/org/postgresql/PGStatement.java new file mode 100644 index 00000000000..1295afbe5aa --- /dev/null +++ b/src/interfaces/jdbc/org/postgresql/PGStatement.java @@ -0,0 +1,21 @@ +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 $ + * 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 + */ +public interface PGStatement +{ + + /* + * Returns the Last inserted/updated oid. + * @return OID of last insert + * @since 7.3 + */ + public long getLastOID() throws SQLException; + +} |