Overload List

  NameDescription
Public methodExecuteReader(IDbCommand)
Execute an IDbCommand (that returns a resultset) against the database specified in the connection String.
Protected methodExecuteReader(IDbCommand, AdoHelper<(Of <<'(TFactory>)>>)..::..AdoConnectionOwnership)
Execute an IDbCommand (that returns a resultset) against the database specified in the connection String.
Public methodExecuteReader(IDbConnection, CommandType, String)
Execute an IDbCommand (that returns a resultset and takes no parameters) against the provided IDbConnection.
Public methodExecuteReader(IDbConnection, String, array<Object>[]()[][])
Execute a stored procedure via an IDbCommand (that returns a resultset) against the specified IDbConnection using the provided parameter values. This method will query the database to discover the parameters for the stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
Public methodExecuteReader(IDbTransaction, CommandType, String)
Execute an IDbCommand (that returns a resultset and takes no parameters) against the provided IDbTransaction.
Public methodExecuteReader(IDbTransaction, String, array<Object>[]()[][])
Execute a stored procedure via an IDbCommand (that returns a resultset) against the specified IDbTransaction using the provided parameter values. This method will query the database to discover the parameters for the stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
Public methodExecuteReader(String, CommandType, String)
Execute an IDbCommand (that returns a resultset and takes no parameters) against the database specified in the connection String.
Public methodExecuteReader(String, String, array<Object>[]()[][])
Execute a stored procedure via an IDbCommand (that returns a resultset) against the database specified in the connection string using the provided parameter values. This method will query the database to discover the parameters for the stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
Public methodExecuteReader(IDbConnection, CommandType, String, array<IDataParameter>[]()[][])
Execute an IDbCommand (that returns a resultset) against the specified IDbConnection using the provided parameters.
Public methodExecuteReader(IDbTransaction, CommandType, String, array<IDataParameter>[]()[][])
Execute an IDbCommand (that returns a resultset) against the specified IDbTransaction using the provided parameters.
Public methodExecuteReader(String, CommandType, String, array<IDataParameter>[]()[][])
Execute an IDbCommand (that returns a resultset) against the database specified in the connection string using the provided parameters.

See Also