Module: Sequel::Access::DatasetMethods

Includes:
EmulateOffsetWithReverseAndCount
Included in:
Sequel::ADO::Access::Dataset
Defined in:
lib/sequel/adapters/shared/access.rb

Constant Summary collapse

SELECT_CLAUSE_METHODS =
Dataset.clause_methods(:select, %w'select distinct limit columns into from join where group order having compounds')
DATE_FORMAT =
'#%Y-%m-%d#'.freeze
TIMESTAMP_FORMAT =
'#%Y-%m-%d %H:%M:%S#'.freeze
TOP =
" TOP ".freeze
BRACKET_CLOSE =
Dataset::BRACKET_CLOSE
BRACKET_OPEN =
Dataset::BRACKET_OPEN
PAREN_CLOSE =
Dataset::PAREN_CLOSE
PAREN_OPEN =
Dataset::PAREN_OPEN
INTO =
Dataset::INTO
FROM =
Dataset::FROM
SPACE =
Dataset::SPACE
NOT_EQUAL =
' <> '.freeze
OPS =
{:'%'=>' Mod '.freeze, :'||'=>' & '.freeze}
BOOL_FALSE =
'0'.freeze
BOOL_TRUE =
'-1'.freeze
DATE_FUNCTION =
'Date()'.freeze
NOW_FUNCTION =
'Now()'.freeze
TIME_FUNCTION =
'Time()'.freeze
CAST_TYPES =
{String=>:CStr, Integer=>:CLng, Date=>:CDate, Time=>:CDate, DateTime=>:CDate, Numeric=>:CDec, BigDecimal=>:CDec, File=>:CStr, Float=>:CDbl, TrueClass=>:CBool, FalseClass=>:CBool}
EXTRACT_MAP =
{:year=>"'yyyy'", :month=>"'m'", :day=>"'d'", :hour=>"'h'", :minute=>"'n'", :second=>"'s'"}
COMMA =
Dataset::COMMA
DATEPART_OPEN =
"datepart(".freeze

Instance Method Summary collapse

Methods included from EmulateOffsetWithReverseAndCount

#empty?, #select_sql

Instance Method Details

#case_expression_sql_append(sql, ce) ⇒ Object

Access doesn’t support CASE, but it can be emulated with nested IIF function calls.



119
120
121
# File 'lib/sequel/adapters/shared/access.rb', line 119

def case_expression_sql_append(sql, ce)
  literal_append(sql, ce.with_merged_expression.conditions.reverse.inject(ce.default){|exp,(cond,val)| Sequel::SQL::Function.new(:IIF, cond, val, exp)})
end

#cast_sql_append(sql, expr, type) ⇒ Object

Access doesn’t support CAST, it uses separate functions for type conversion



125
126
127
128
129
130
# File 'lib/sequel/adapters/shared/access.rb', line 125

def cast_sql_append(sql, expr, type)
  sql << CAST_TYPES.fetch(type, type).to_s
  sql << PAREN_OPEN
  literal_append(sql, expr)
  sql << PAREN_CLOSE
end

#complex_expression_sql_append(sql, op, args) ⇒ Object



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/sequel/adapters/shared/access.rb', line 132

def complex_expression_sql_append(sql, op, args)
  case op
  when :ILIKE
    complex_expression_sql_append(sql, :LIKE, args)
  when :'NOT ILIKE'
    complex_expression_sql_append(sql, :'NOT LIKE', args)
  when :LIKE, :'NOT LIKE'
    sql << PAREN_OPEN
    literal_append(sql, args.at(0))
    sql << SPACE << op.to_s << SPACE
    literal_append(sql, args.at(1))
    sql << PAREN_CLOSE
  when :'!='
    sql << PAREN_OPEN
    literal_append(sql, args.at(0))
    sql << NOT_EQUAL
    literal_append(sql, args.at(1))
    sql << PAREN_CLOSE
  when :'%', :'||'
    sql << PAREN_OPEN
    c = false
    op_str = OPS[op]
    args.each do |a|
      sql << op_str if c
      literal_append(sql, a)
      c ||= true
    end
    sql << PAREN_CLOSE
  when :extract
    part = args.at(0)
    raise(Sequel::Error, "unsupported extract argument: #{part.inspect}") unless format = EXTRACT_MAP[part]
    sql << DATEPART_OPEN << format.to_s << COMMA
    literal_append(sql, args.at(1))
    sql << PAREN_CLOSE
  else
    super
  end
end

#constant_sql_append(sql, constant) ⇒ Object

Use Date() and Now() for CURRENT_DATE and CURRENT_TIMESTAMP



172
173
174
175
176
177
178
179
180
181
182
183
# File 'lib/sequel/adapters/shared/access.rb', line 172

def constant_sql_append(sql, constant)
  case constant
  when :CURRENT_DATE
    sql << DATE_FUNCTION
  when :CURRENT_TIMESTAMP
    sql << NOW_FUNCTION
  when :CURRENT_TIME
    sql << TIME_FUNCTION
  else
    super
  end
end

#cross_join(table) ⇒ Object

Emulate cross join by using multiple tables in the FROM clause.



186
187
188
# File 'lib/sequel/adapters/shared/access.rb', line 186

def cross_join(table)
  clone(:from=>@opts[:from] + [table])
end

#emulated_function_sql_append(sql, f) ⇒ Object



190
191
192
193
194
195
196
197
# File 'lib/sequel/adapters/shared/access.rb', line 190

def emulated_function_sql_append(sql, f)
  case f.f
  when :char_length
    literal_append(sql, SQL::Function.new(:len, f.args.first))
  else
    super
  end
end

#escape_like(string) ⇒ Object

Access uses [] to escape metacharacters, instead of backslashes.



200
201
202
# File 'lib/sequel/adapters/shared/access.rb', line 200

def escape_like(string)
  string.gsub(/[\\*#?\[]/){|m| "[#{m}]"}
end

#into(table) ⇒ Object

Specify a table for a SELECT … INTO query.



205
206
207
# File 'lib/sequel/adapters/shared/access.rb', line 205

def into(table)
  clone(:into => table)
end

#supports_intersect_except?Boolean

Access doesn’t support INTERSECT or EXCEPT

Returns:

  • (Boolean)


210
211
212
# File 'lib/sequel/adapters/shared/access.rb', line 210

def supports_intersect_except?
  false
end

#supports_is_true?Boolean

Access does not support IS TRUE

Returns:

  • (Boolean)


215
216
217
# File 'lib/sequel/adapters/shared/access.rb', line 215

def supports_is_true?
  false
end

#supports_join_using?Boolean

Access doesn’t support JOIN USING

Returns:

  • (Boolean)


220
221
222
# File 'lib/sequel/adapters/shared/access.rb', line 220

def supports_join_using?
  false
end

#supports_multiple_column_in?Boolean

Access does not support multiple columns for the IN/NOT IN operators

Returns:

  • (Boolean)


225
226
227
# File 'lib/sequel/adapters/shared/access.rb', line 225

def supports_multiple_column_in?
  false
end

#truncateObject

Access doesn’t support truncate, so do a delete instead.



230
231
232
233
# File 'lib/sequel/adapters/shared/access.rb', line 230

def truncate
  delete
  nil
end