示例#1
0
 internal DeveelSqlDataReader(DeveelSqlCommand command, QueryResult result, CommandBehavior behavior)
 {
     this.command = command;
     this.behavior = behavior;
     this.result = result;
 }
示例#2
0
 public QueryResult(IQueryContext context)
 {
     command = null;
     ConnectionSetup(context);
 }
示例#3
0
        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;
        }
示例#4
0
 public QueryResult(DeveelSqlCommand command)
 {
     this.command = command;
 }
 internal DeveelSqlParameterCollection(DeveelSqlCommand command)
 {
     this.command = command;
     parameters = new List<DeveelSqlParameter>();
 }