| AbstractDatabaseAbstracterExecuteNonQuery Method (SqlStatement, String) |
Executes a SqlStatement not returning data (basically, anything but a SELECT).
Exclusion zones that end up being excluded are replaced by replaceEmptyZone.
Since no Config object is passed to the method, the parameters values are not modified.
Namespace: Activsoft.Engine.DbAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxpublic int ExecuteNonQuery(
SqlStatement st,
string replaceEmptyZone
)
Public Function ExecuteNonQuery (
st As SqlStatement,
replaceEmptyZone As String
) As Integer
public:
virtual int ExecuteNonQuery(
SqlStatement^ st,
String^ replaceEmptyZone
) sealed
abstract ExecuteNonQuery :
st : SqlStatement *
replaceEmptyZone : string -> int
override ExecuteNonQuery :
st : SqlStatement *
replaceEmptyZone : string -> int Parameters
- 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
Implements
IDatabaseAbstracterExecuteNonQuery(SqlStatement, String)
See Also