Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Limiting number of records from ADO queries
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00190989
Message ID:
00191112
Views:
19
>Timothy,
>you have to set the maxrecords property before you open the recordset.

Below is the code I am using. Am I doing something wrong here?

' Create ADO connection object
Set loConnection = sdMtsObjectCreate(poMTSContext, "ADODB.Connection")

' Create ADO recordset object
Set loRsToBll = sdMtsObjectCreate(poMTSContext, "ADODB.Recordset")

' Open connection to data source
loConnection.Open APP_CONNECTION

' Allow "abc" = "a" to be true
loConnection.Execute ("SET ANSI OFF")

' Set maximum records returned (does not work)
loRsToBll.MaxRecords = 200

' Query data source
loRsToBll.Open tcSQL, loConnection, adOpenStatic, adLockReadOnly, adCmdText
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform