|
<< Click to Display Table of Contents >> C Examples: DbiGetCursorForTable |
![]() ![]()
|
Retrieve a cursor for a table.
The table should have at least one open cursor already on it. This example uses the following input:
fDbiGetCursorForTable("STOCK.DB", &hSTOCKCur);
DBIResult fDbiGetCursorForTable(pCHAR TblName, hDBIDb hDb, phDBICur phCur)
{
DBIResult rslt;
rslt = Chk(DbiGetCursorForTable(hDb, TblName, szPARADOX, phCur));
return rslt;
}