SQLStatement.Execute Method | |
Execute the statement.
Namespace:
VO
Assembly:
VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Execute(
uParm
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Execute(
Usual uParm = default
)
Request Example
View SourceParameters
- 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:
1oStmt := SQLStatement{"Insert into employee;
2values(?, ?, ?, ?, ?, ?, ?, ?)",oConn}
3Execute(90012, 'Bill', 'wm', NULL, '911', NULL, 'PROF','4002')
4?"Inserted!"
See Also