Click or drag to resize

SQLStatement.Execute Method

X#
Execute the statement.

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

Parameters

uParm (Optional)
Type: Usual
The array of parameters to execute., or a list of parameters to execute.

Return Value

Type: Usual
TRUE if successful; otherwise, FALSE.
Examples
The following example executes the SQL statement:
X#
1oStmt := SQLStatement{"Insert into employee;
2values(?, ?, ?, ?, ?, ?, ?, ?)",oConn}
3Execute(90012, 'Bill', 'wm', NULL, '911', NULL, 'PROF','4002')
4?"Inserted!"
See Also