blob: 2594c7e1d0dd8b4221c29339a04ac01ee100d996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 ();
}
|