Function CSPODBCRecordset::SetCursorType()
Description:
Sets the cursor type.
 |
Prototype:
bool SetCursorType(long lCurType);
Arguments:
- long lCurType [IN]
The cursor type.
Return value:
If successful, it returns true. Otherwise, it returns false.
Remarks:
The supported values are:
CSPODBCRecordset::CURSOR_DYNAMIC for dynamic cursor. CSPODBCRecordset::CURSOR_STATIC for static cursor. CSPODBCRecordset::CURSOR_KEYSET for a keyset driven cursor. CSPODBCRecordset::CURSOR_FORWARD for a forward only ( not scrollable ) cursor.
See also:
member function SetConcurrency()
|
|