CRecordset Members
Base Class Members
Data Members
Construction
Recordset Attributes
Recordset Update Operations
Recordset Navigation Operations
Other Recordset Operations
Recordset Overridables
Base Class Members
Data Members
Contains the ODBC statement handle for the recordset. Type HSTMT. |
|
Contains the number of field data members in the recordset. Type UINT. |
|
Contains the number of parameter data members in the recordset. Type UINT. |
|
Contains a pointer to the CDatabase object through which the recordset is connected to a data source. |
|
Contains a CString that specifies a Structured Query Language (SQL) WHERE clause. Used as a filter to select only those records that meet certain criteria. |
|
Contains a CString that specifies a SQL ORDER BY clause. Used to control how the records are sorted. |
Construction
Closes the recordset and the ODBC HSTMT associated with it. |
|
Constructs a CRecordset object. Your derived class must provide a constructor that calls this one. |
|
Opens the recordset by retrieving the table or performing the query that the recordset represents. |
Recordset Attributes
Returns nonzero if new records can be added to the recordset via the AddNew member function. |
|
Returns nonzero if the recordset supports bookmarks. |
|
Returns nonzero if Requery can be called to run the recordset's query again. |
|
Returns nonzero if you can scroll through the records. |
|
Returns nonzero if the data source supports transactions. |
|
Returns nonzero if the recordset can be updated (you can add, update, or delete records). |
|
Returns the number of fields in the recordset. |
|
Returns the number of records in the recordset. |
|
Gets the SQL string used to select records for the recordset. |
|
Gets the status of the recordset: the index of the current record and whether a final count of the records has been obtained. |
|
Gets the name of the table on which the recordset is based. |
|
Returns nonzero if the recordset has been positioned before the first record. There is no current record. |
|
Returns nonzero if the recordset is positioned on a deleted record. |
|
Returns nonzero if the recordset has been positioned after the last record. There is no current record. |
|
Returns nonzero if Open has been called previously. |
Recordset Update Operations
Prepares for adding a new record. Call Update to complete the addition. |
|
Cancels any pending updates due to an AddNew or Edit operation. |
|
Deletes the current record from the recordset. You must explicitly scroll to another record after the deletion. |
|
Prepares for changes to the current record. Call Update to complete the edit. |
|
Completes an AddNew or Edit operation by saving the new or edited data on the data source. |
Recordset Navigation Operations
Assigns the bookmark value of a record to the parameter object. |
|
Positions the recordset to a specified number of records from the current record in either direction. |
|
Positions the current record on the first record in the recordset. Test for IsBOF first. |
|
Positions the current record on the last record or on the last rowset. Test for IsEOF first. |
|
Positions the current record on the next record or on the next rowset. Test for IsEOF first. |
|
Positions the current record on the previous record or on the previous rowset. Test for IsBOF first. |
|
Positions the recordset on the record corresponding to the specified record number. |
|
Positions the recordset on the record specified by the bookmark. |
Other Recordset Operations
Cancels an asynchronous operation or a process from a second thread. |
|
Returns nonzero if there is another result set to be retrieved, when using a predefined query. |
|
Returns the value of a field in a recordset. |
|
Returns specific kinds of information about the fields in a recordset. |
|
Returns the number of records you wish to retrieve during a single fetch. |
|
Returns the actual number of rows retrieved during a fetch. |
|
Returns the status of the row after a fetch. |
|
Returns nonzero if the specified field in the current record has been changed. |
|
Returns nonzero if the specified field in the current record is Null (has no value). |
|
Returns nonzero if the specified field in the current record can be set to Null (having no value). |
|
Refreshes the data and status of the specified row(s). |
|
Runs the recordset's query again to refresh the selected records. |
|
Marks the specified field in the current record as changed. |
|
Sets the value of the specified field in the current record to Null (having no value). |
|
Sets the locking mode to "optimistic" locking (the default) or "pessimistic" locking. Determines how records are locked for updates. |
|
Sets the specified parameter to Null (having no value). |
|
Positions the cursor on the specified row within the rowset. |
Recordset Overridables
Called to handle errors generated during record fetching. |
|
Called to exchange bulk rows of data from the data source to the recordset. Implements bulk record field exchange (Bulk RFX). |
|
Called to exchange data (in both directions) between the field data members of the recordset and the corresponding record on the data source. Implements record field exchange (RFX). |
|
Called to get the default connection string. |
|
Called to get the default SQL string to execute. |
|
Called to set options (used on selection) for the specified ODBC statement. |
|
Called to set options (used on update) for the specified ODBC statement. |
|
Specifies the number of records you wish to retrieve during a fetch. |