Try OpenEdge Now
SQL Reference
JDBC Reference
:
Java Class Reference
:
SQLCursor
:
SQLCursor.fetch
:
Throws
Throws
DhSQLException
Example
This code fragment illustrates the
fetch
method and the
getValue
method:
for (;;)
{ cust_cursor.Fetch ();
if (cust_cursor.Found ())
{
cust_cursor.getValue (1, cust_number);
cust_cursor.getValue (2, cust_name) ;
}
else
break;
}