dbGet |
Top Previous Next |
Syntax INT = dbGet(hstmt as INT) Description Gets the next record from a result set. Parameters hstmt - Statement handle returned by dbExecSQL or dbPrepareSQL. Return value TRUE if the record was retrieved and any bound variables filled in with column data. FALSE if the end of the result set was reached or there were no records in the result set. Remarks A column that is nullable and currently set to NULL can be determined by dbIsNull after a dbGet operation. A NULL value can also be determined by checking the optional 'pReturn' variable used when binding the column with dbBindVariable. See Also: dbGetNext, dbGetPrev, dbExecSQL, dbPrepareSQL Example usage hstmt = dbExecSQL(pdb,"SELECT * FROM Addresses") |