Closes the result set specified by the SELECT or CALL statement.
Format
public void close()
Returns
None
Parameters
None
Throws
DhSQLException
Example
.
.
.
if (cust_cursor.Found ())
{
cust_cursor.getValue (1, INTEGER);
cust_cursor.getValue (2, CHAR) ;
}
else
break;
}
cust_cursor.close () ;