Database.Execute(String, Object[]) Method

Definition

Executes a non-query SQL statement.

public int Execute (string commandText, params object[] args);
member this.Execute : string * obj[] -> int
Public Function Execute (commandText As String, ParamArray args As Object()) As Integer

Parameters

commandText
String

The SQL statement to execute.

args
Object[]

(Optional) Parameters to pass to the SQL statement.

Returns

The count of records affected by the SQL statement.

Exceptions

commandText is null or empty.

Applies to