Connection.prototype.use = function(db) {
  if (typeof db !== 'string') throw new errors.ReqlDriverError('First argument of `use` must be a string');
  this.db = db;
};