Access doesn’t support INTERSECT or EXCEPT
# File lib/sequel/adapters/shared/access.rb, line 39 39: def supports_intersect_except? 40: false 41: end
Access uses # to quote dates
# File lib/sequel/adapters/shared/access.rb, line 46 46: def literal_date(d) 47: d.strftime(DATE_FORMAT) 48: end
Access uses # to quote datetimes
# File lib/sequel/adapters/shared/access.rb, line 51 51: def literal_datetime(t) 52: t.strftime(TIMESTAMP_FORMAT) 53: end
Access uses [] for quoting identifiers
# File lib/sequel/adapters/shared/access.rb, line 65 65: def quoted_identifier_append(sql, v) 66: sql << BRACKET_OPEN << v.to_s << BRACKET_CLOSE 67: end
Access requires the limit clause come before other clauses
# File lib/sequel/adapters/shared/access.rb, line 70 70: def select_clause_methods 71: SELECT_CLAUSE_METHODS 72: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.