| IDatabaseAbstracterExecuteNonQuery Method (Config, SqlStatement, String) |
Executes a SqlStatement not returning data (basically, anything but a SELECT, although postgresql, for example, can return data from INSERT / UPDATE / DELETE statements).
Parameter values are read from the Config object.
Exclusion zones that end up being excluded are replaced by replaceEmptyZone.
Namespace: Activsoft.Engine.DbAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxint ExecuteNonQuery(
Config monConfig,
SqlStatement st,
string replaceEmptyZone
)
Function ExecuteNonQuery (
monConfig As Config,
st As SqlStatement,
replaceEmptyZone As String
) As Integer
int ExecuteNonQuery(
Config^ monConfig,
SqlStatement^ st,
String^ replaceEmptyZone
)
abstract ExecuteNonQuery :
monConfig : Config *
st : SqlStatement *
replaceEmptyZone : string -> int
Parameters
- monConfig
- Type: Activsoft.EngineConfig
Config instance that will be used to read the SqlStatement's parameters values - st
- Type: Activsoft.Engine.DbSqlStatement
the SqlStatement to execute - replaceEmptyZone
- Type: SystemString
the text to replace exclusion zones with
Return Value
Type:
Int32the number of lines affected by the statement
See Also