| AbstractDatabaseAbstracterExecuteReader 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
Syntaxpublic IDataReader ExecuteReader(
Config monConfig,
SqlStatement st,
string replaceEmptyZone
)
Public Function ExecuteReader (
monConfig As Config,
st As SqlStatement,
replaceEmptyZone As String
) As IDataReader
public:
virtual IDataReader^ ExecuteReader(
Config^ monConfig,
SqlStatement^ st,
String^ replaceEmptyZone
) sealed
abstract ExecuteReader :
monConfig : Config *
st : SqlStatement *
replaceEmptyZone : string -> IDataReader
override ExecuteReader :
monConfig : Config *
st : SqlStatement *
replaceEmptyZone : string -> IDataReader 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:
IDataReadera IDataReader to browse the returned data
Implements
IDatabaseAbstracterExecuteReader(Config, SqlStatement, String)
See Also