summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java
diff options
context:
space:
mode:
authorPostgreSQL Daemon <webmaster@postgresql.org>2004-01-19 20:07:14 +0000
committerPostgreSQL Daemon <webmaster@postgresql.org>2004-01-19 20:07:14 +0000
commit2a9bf5b33d0b82e9f483f6a5ced9d71e1c009441 (patch)
tree8c0c38494985b8dbfd2311b5be51fa76a271ba17 /src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java
parent9bd681a5220186230e0ea0f718a71af7ebe4b560 (diff)
downloadpostgresql-2a9bf5b33d0b82e9f483f6a5ced9d71e1c009441.tar.gz
JDBC is now on GBorg
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java')
-rw-r--r--src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java b/src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java
deleted file mode 100644
index 411b227a8d..0000000000
--- a/src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * PGRefCursorResultSet.java
- * Describes a PLPGSQL refcursor type.
- *
- * Copyright (c) 2003, PostgreSQL Global Development Group
- *
- * IDENTIFICATION
- * $PostgreSQL: pgsql/src/interfaces/jdbc/org/postgresql/PGRefCursorResultSet.java,v 1.2 2003/11/29 19:52:09 pgsql Exp $
- *
- *-------------------------------------------------------------------------
- */
-package org.postgresql;
-
-
-/** A ref cursor based result set.
- */
-public interface PGRefCursorResultSet
-{
-
- /** return the name of the cursor.
- */
- public String getRefCursor ();
-
-}