SQLSelect.Execute Method | |
Open the cursor.
Namespace:
VO
Assembly:
VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Execute(
uParam
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Execute(
Usual uParam = default
)
Request Example
View SourceParameters
- uParam (Optional)
- Type: Usual
The array of parameters to execute.
<cParam> [, <cParam> …] | <nParam> [ , <nParam> …]
The list of parameters to execute.
Return Value
Type:
Usual
TRUE if successful; otherwise, FALSE.
Examples
The following example demonstrates the use of the SQLSelect:Execute() method:
1oSel := SQLSelect{"SELECT * FROM customer WHERE CustNo > ?",oConn}
2oSel:Execute(100)
See Also