internal DeveelSqlDataReader(DeveelSqlCommand command, QueryResult result, CommandBehavior behavior) { this.command = command; this.behavior = behavior; this.result = result; }
public QueryResult(IQueryContext context) { command = null; ConnectionSetup(context); }
public void Dispose() { try { Close(); } catch (Exception) { // Ignore // We ignore exceptions because handling cases where the server // connection has broken for many ResultSets would be annoying. } command = null; }
public QueryResult(DeveelSqlCommand command) { this.command = command; }
internal DeveelSqlParameterCollection(DeveelSqlCommand command) { this.command = command; parameters = new List<DeveelSqlParameter>(); }