ExecuteSimple |
Scroll |
Executes the query on the server.
Namespace: Therefore.API
Visual Basic Public Overridable Function ExecuteSimple ( _ nCtgryNo As Integer, _ int nFieldNo As Integer, _ string bstrCondition As String, _ int nOrderByFieldNo As Integer, _ pServer As TheServer, _ ) As TheQueryResult C# public virtual TheQueryResult ExecuteSimple ( int nCtgryNo, int nFieldNo, string strCondition, int nOrderByFieldNo, TheServer pServer )
Parameters nCtgryNo Number of the category to search in.
nFieldNo Number of the field the bstrCondition is applied to.
strCondition Condition applied to the nFieldNo field.
nOrderByFieldNo Number of the field by which to sort the results.
pServer A valid and connected TheServer object.
Return Value TheQueryResult instance with the information found by the query. |
|
Pseudo-Static Method This method does not read or write any member variables of the class it belongs to and should be used like a static method. Unfortunately, Component Object Model (COM) interfaces do not support the concept of static methods. You may declare a temporary instance when using the method once or create a singleton or static member in the calling class if you plan on using it frequently. |