FairCom Java & .NET Stored Procedures
SQLCursor.open
Opens the result set specified by the SELECT or CALL statement.
Format
public void open()
Returns
None
Parameters
None
Throws
DhSQLException
Example
SQLCursor empcursor = new SQLCursor (
"SELECT name, sal FROM emp " ) ;
empcursor.open () ;