| ConfigExecuteNonQuery Method (Config, SqlStatement) |
Executes a SqlStatement not returning data (basically, anything but a SELECT, although postgresql, for example, can return data from INSERT / UPDATE / DELETE statements).
Exclusion zones that end up being excluded are replaced by an empty string.
Namespace: Activsoft.EngineAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxpublic int ExecuteNonQuery(
Config monConfig,
SqlStatement stmt
)
Public Function ExecuteNonQuery (
monConfig As Config,
stmt As SqlStatement
) As Integer
public:
virtual int ExecuteNonQuery(
Config^ monConfig,
SqlStatement^ stmt
) sealed
abstract ExecuteNonQuery :
monConfig : Config *
stmt : SqlStatement -> int
override ExecuteNonQuery :
monConfig : Config *
stmt : SqlStatement -> int Parameters
- monConfig
- Type: Activsoft.EngineConfig
Config instance that will be used to read the SqlStatement's parameters values - stmt
- Type: Activsoft.Engine.DbSqlStatement
the SqlStatement to execute
Return Value
Type:
Int32the number of lines affected by the statement
Implements
IDatabaseAbstracterExecuteNonQuery(Config, SqlStatement)
See Also