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

Namespace: Activsoft.Engine.Db
Assembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntax
public int ExecuteNonQuery(
	IDbCommand cmd
)

Parameters

cmd
Type: System.DataIDbCommand
the IDbCommand to be executed

Return Value

Type: Int32
the number of lines affected by the statement

Implements

IDatabaseAbstracterExecuteNonQuery(IDbCommand)
See Also