Click or drag to resize
ConfigExecuteNonQuery Method (String)
Executes a SQL request not returning data (basically, anything but a SELECT, although postgresql, for example, can return data from INSERT / UPDATE / DELETE statements).

Namespace: Activsoft.Engine
Assembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntax
public int ExecuteNonQuery(
	string sql
)

Parameters

sql
Type: SystemString
the SQL request to be executed

Return Value

Type: Int32
the number of lines affected by the statement

Implements

IDatabaseAbstracterExecuteNonQuery(String)
See Also