| IDatabaseAbstracterExecuteReader Method (Config, SqlStatement, String) |
Executes a SqlStatement returning data.
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
SyntaxIDataReader ExecuteReader(
Config monConfig,
SqlStatement stmt,
string replaceEmptyZones
)
Function ExecuteReader (
monConfig As Config,
stmt As SqlStatement,
replaceEmptyZones As String
) As IDataReader
IDataReader^ ExecuteReader(
Config^ monConfig,
SqlStatement^ stmt,
String^ replaceEmptyZones
)
abstract ExecuteReader :
monConfig : Config *
stmt : SqlStatement *
replaceEmptyZones : string -> IDataReader
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 - replaceEmptyZones
- Type: SystemString
the text to replace exclusion zones with
Return Value
Type:
IDataReadera IDataReader to browse the returned data
See Also