Function CSPODBCRecordset::CSPODBCRecordset()
Description:
Constructs a connected recordset. Optionally, the size of the current rowset size (block cursor size) can be specified.
 |
Prototype:
CSPODBCRecordset(const CSPODBCConnection& Conn, unsigned long ulRowsetSize = 1);
Arguments:
- const CSPODBCConnection& Conn [IN]
The connection object to connect to.
- 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 with the database. Useful for queries that are expected to return a large number of rows.
See also:
constructor CSPODBCRecordset()
|
|