PdfRpt.DataSources.SqlDataReaderDataSource.SqlDataReaderDataSource C# (CSharp) Method

SqlDataReaderDataSource() public method

Converts the selected records to an IEnumerable of the Pdf Cells Data
public SqlDataReaderDataSource ( string connectionString, string sql ) : System
connectionString string the connection string
sql string SQL statement to select the required records
return System
        public SqlDataReaderDataSource(string connectionString, string sql, params object[] parametersValues)
        {
            _connectionString = connectionString;
            _sql = sql;
            _paramValues = parametersValues;
        }
SqlDataReaderDataSource