Function CSPODBCRecordset::CSPODBCRecordset()
Description:
Constructs an unconnected recordset. Optionally, the size of the current rowset size (block cursor size) can be specified.
 |
Prototype:
CSPODBCRecordset(unsigned long ulRowsetSize = 1);
Arguments:
- unsigned long ulRowsetSize = 1 [IN]
The size of the rowset.
Return value:
No value is returned.
Remarks:
For fetching performance reasons, you can specify a rowset size of more than 1. Using bigger rowsets reduces the communication overhead between the application and the database. Useful for queries that are expected to return a large number of rows.
See also:
constructor CSPODBCRecordset( CSPODBCConnection& )
|
|