ExecuteAsync.3 |
Scroll |
Executes the query on the server in asynchronous mode. The query will not return all result rows at once. More rows can be returned by using GetNextResultRows.
Namespace: Therefore.API
Visual Basic Public Overridable Function Execute ( _ pServer As TheServer, _ nlcid As Integer, _ bEndOfresults As Boolean _ ) As ITheQueryResult C# public virtual ITheQueryResult Execute ( TheServer pServer, int nlcid, out bool bEndOfresults )
Parameters pServer A valid and connected TheServer object.
nlcid The LCID used to parse the query conditions.
bEndOfResults If true, there are no more query results pending on the server. If false, there are additional query results pending on the server which can be retrieved with GetNextResultRows.
Return Value TheQueryResult instance with the information found by the query limited to the number specified with RowBlockSize. |
|