| 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.DbAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxpublic int ExecuteNonQuery(
IDbCommand cmd
)
Public Function ExecuteNonQuery (
cmd As IDbCommand
) As Integer
public:
virtual int ExecuteNonQuery(
IDbCommand^ cmd
) sealed
abstract ExecuteNonQuery :
cmd : IDbCommand -> int
override 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
Implements
IDatabaseAbstracterExecuteNonQuery(IDbCommand)
See Also