| IDatabaseAbstracterExecuteNonQuery 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.DbAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxint ExecuteNonQuery(
IDbCommand cmd
)
Function ExecuteNonQuery (
cmd As IDbCommand
) As Integer
int ExecuteNonQuery(
IDbCommand^ cmd
)
abstract ExecuteNonQuery :
cmd : IDbCommand -> int
Parameters
- cmd
- Type: System.DataIDbCommand
the IDbCommand to be executed
Return Value
Type:
Int32the number of lines affected by the statement
See Also