diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java')
| -rw-r--r-- | src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java b/src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java new file mode 100644 index 0000000000..2594c7e1d0 --- /dev/null +++ b/src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java @@ -0,0 +1,25 @@ +/*------------------------------------------------------------------------- + * + * PGRefCursorResultSet.java + * Describes a PLPGSQL refcursor type. + * + * Copyright (c) 2003, PostgreSQL Global Development Group + * + * IDENTIFICATION + * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGRefCursorResultSet.java,v 1.1 2003/05/03 20:40:45 barry Exp $ + * + *------------------------------------------------------------------------- + */ +package org.postgresql; + + +/** A ref cursor based result set. + */ +public interface PGRefCursorResultSet +{ + + /** return the name of the cursor. + */ + public String getRefCursor (); + +} |
