SQLStatement.Execute Method (Typed) | |
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
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual bool 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:
Logic
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