Ejemplo n.º 1
0
 internal SnowflakeDbDataReader(SnowflakeDbCommand command, SFBaseResultSet resultSet)
 {
     this.dbCommand   = command;
     this.resultSet   = resultSet;
     this.isClosed    = false;
     this.SchemaTable = PopuldateSchemaTable(resultSet);
 }
Ejemplo n.º 2
0
 internal SnowflakeDbDataReader(SnowflakeDbCommand command, SFBaseResultSet resultSet)
 {
     this.dbCommand   = command;
     this.resultSet   = resultSet;
     this.isClosed    = false;
     this.SchemaTable = PopulateSchemaTable(resultSet);
     RecordsAffected  = resultSet.CalculateUpdateCount();
 }
 public SnowflakeDbDataAdapter(string selectCommandText, SnowflakeDbConnection selectConnection) : this()
 {
     SelectCommand             = new SnowflakeDbCommand(selectConnection);
     SelectCommand.CommandText = selectCommandText;
 }
 public SnowflakeDbDataAdapter(SnowflakeDbCommand selectCommand) : this()
 {
     SelectCommand = selectCommand;
 }
 internal SnowflakeDbDataReader(SnowflakeDbCommand command, SFBaseResultSet resultSet)
 {
     this.dbCommand = command;
     this.resultSet = resultSet;
     this.isClosed  = false;
 }