Progress
SQL-92
Guide and Reference


SQLCursor.close

Closes the result set specified by a SELECT or CALL statement.

Format

public void close()

Returns

None

Parameters

None

Throws

DhSQLException

EXAMPLE

This code fragment illustrates the getValue and close methods:

{
     if (cust_cursor.Found ())
     {
          cust_cursor.getValue (1, cust_number);
          cust_cursor.getValue (2, cust_name) ;
     }
     else
          break;
}
     cust_cursor.close () ; 


Copyright © 2004 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095