Click or drag to resize

SQLStatement.Execute Method (Typed)

X#
Execute the statement.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOSQLClasses (in XSharp.VOSQLClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Execute(
	uParm
) AS LOGIC 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: Logic
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