Syntax
| SQL.RunQueryExecute(QueryOrProcedure[, Timeout])
| ||||||
---|---|---|---|---|---|---|---|
Description
| Executes an UPDATE, INSERT or DELETE query or a STORED PROCEDURE.
When the execute completes successfully, the function returns TRUE, or FALSE otherwise.
| ||||||
See Also
| other SQL.RunQueryxxxxxxxx functions.
| ||||||
Example
| Sub Main() Dim sQuery As String sQuery = "Insert Into Prm_Status Values('n ','Nieuw ')" If SQL.RunQueryExecute(sQuery, 5) Then MsgBox "Insert query is OK!" End If End Sub | ||||||