Click or drag to resize

SQLSelect.Execute Method

X#
Open the cursor.

Namespace:  VO
Assembly:  VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Execute(
	uParam
) AS USUAL CLIPPER
Request Example View Source

Parameters

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:
X#
1oSel := SQLSelect{"SELECT * FROM customer WHERE CustNo > ?",oConn}
2oSel:Execute(100)
See Also