DataSource.ExecuteNoReturn Method (String)

System.Data.Generic

DataSourceExecuteNoReturn Method (String)
Executes the Query against the datasource without returning any value.

Namespace: System.Data.Generic
Assembly: System.Data.Generic (in System.Data.Generic.dll) Version: 1.9.5473.30542 (1.9.5473.2392)
Syntax
public void ExecuteNoReturn(
	string SQL
)
Public Sub ExecuteNoReturn ( 
	SQL As String
)
public:
void ExecuteNoReturn(
	String^ SQL
)
member ExecuteNoReturn : 
        SQL : string -> unit 

Parameters

SQL
Type: SystemString
SQL statement to execute.
Exceptions
ExceptionCondition
ArgumentNullExceptionIn case the SQL is null.
SqlExceptionIn case the underlying connection cause an exception.
Remarks