PRB: MaxRecords Property Not Used in Access Queries with ADOID: Q186267
|
Using the MaxRecords property of an ADO Recordset object does not affect the number of records returned in queries against Microsoft Access databases.
The MaxRecords property depends on functionality exposed by the underlying OLE DB provider or ODBC driver to limit the number of rows returned by the query. This functionality is optional for ODBC drivers and OLE DB providers. The Microsoft Access ODBC driver does not expose this functionality. This behavior may occur for other OLE DB providers and ODBC drivers as well.
If you want to limit the number of records returned in a query against a Microsoft Access database, use the TOP syntax in the query string rather than the Recordset's MaxRecords property.
This behavior is by design.
strSQL = "SELECT * FROM Customers"
rsCustomers.MaxRecords = 10
rsCustomers.Open strSQL, cnNWind, adOpenStatic
MsgBox rsCustomers.RecordCount & " records returned using MaxRecords."
Use this following code:
strSQL = "SELECT TOP 10 * FROM Customers"
rsCustomers.Open strSQL, cnNWind, adOpenStatic
MsgBox rsCustomers.RecordCount & " records returned using TOP syntax."
With the first snippet of code, you should see that the MaxRecords property does not affect the number of records returned by the query. The second snippet of code should return only ten records.
Additional query words:
Keywords : kbADO200 kbDatabase kbDCOM kbMTS kbVBp600
Version : WINDOWS:1.0,1.5,2.0
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: June 2, 1999