class Sequel::ADO::Access::AdoSchema

  1. lib/sequel/adapters/ado/access.rb
Superclass: Object

Methods

Public Class

  1. new

Public Instance

  1. criteria
  2. type

Constants

QUERY_TYPE = { :columns => 4, :indexes => 12, :tables => 20, :views => 23, :foreign_keys => 27 }.freeze  

Attributes

criteria [R]
type [R]

Public Class methods

new(type, crit)
[show source]
   # File lib/sequel/adapters/ado/access.rb
22 def initialize(type, crit)
23   @type     = QUERY_TYPE[type]
24   @criteria = Array(crit)
25 end