Module: Sequel::Access::DatasetMethods

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
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

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.



102
103
104
# File 'lib/sequel/adapters/shared/access.rb', line 102

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



108
109
110
111
112
113
# File 'lib/sequel/adapters/shared/access.rb', line 108

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



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/sequel/adapters/shared/access.rb', line 115

def complex_expression_sql_append(sql, op, args)
  case op
  when :ILIKE
    super(sql, :LIKE, args)
  when :'NOT ILIKE'
    super(sql, :'NOT LIKE', args)
  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



149
150
151
152
153
154
155
156
157
158
159
160
# File 'lib/sequel/adapters/shared/access.rb', line 149

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.



163
164
165
# File 'lib/sequel/adapters/shared/access.rb', line 163

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

#emulated_function_sql_append(sql, f) ⇒ Object



167
168
169
170
171
172
173
174
# File 'lib/sequel/adapters/shared/access.rb', line 167

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

#into(table) ⇒ Object

Specify a table for a SELECT … INTO query.



177
178
179
# File 'lib/sequel/adapters/shared/access.rb', line 177

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

#supports_intersect_except?Boolean

Access doesn’t support INTERSECT or EXCEPT

Returns:

  • (Boolean)


182
183
184
# File 'lib/sequel/adapters/shared/access.rb', line 182

def supports_intersect_except?
  false
end

#supports_is_true?Boolean

Access does not support IS TRUE

Returns:

  • (Boolean)


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

def supports_is_true?
  false
end

#supports_join_using?Boolean

Access doesn’t support JOIN USING

Returns:

  • (Boolean)


192
193
194
# File 'lib/sequel/adapters/shared/access.rb', line 192

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)


197
198
199
# File 'lib/sequel/adapters/shared/access.rb', line 197

def supports_multiple_column_in?
  false
end

#truncateObject

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



202
203
204
205
# File 'lib/sequel/adapters/shared/access.rb', line 202

def truncate
  delete
  nil
end