Execute a stored procedure via an IDbCommand (that returns a resultset) against the database specified in the connection string using the dataRow column values as the stored procedure's parameters values. This method will assign the parameter values based on parameter order.

Namespace: CodeSmith.Engine
Assembly: CodeSmith.Engine (in CodeSmith.Engine.dll) Version: 6.0.0.0 (7.0.0.15127)

Syntax

C#
public virtual IDataReader ExecuteReaderTypedParams(
	IDbCommand command,
	DataRow dataRow
)
Visual Basic
Public Overridable Function ExecuteReaderTypedParams ( 
	command As IDbCommand,
	dataRow As DataRow
) As IDataReader

Parameters

command
Type: System.Data..::..IDbCommand
The IDbCommand to execute
dataRow
Type: System.Data..::..DataRow
The dataRow used to hold the stored procedure's parameter values.

Return Value

Type: IDataReader
A IDataReader containing the resultset generated by the command

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThrown if command is null.

See Also