SQLSelect.Execute Method (Typed) | |
Open the cursor.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOSQLClasses (in XSharp.VOSQLClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Execute(
uParam
) AS LOGIC CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual bool 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:
Logic
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