Module: ActiveRecord::ConnectionAdapters::SQLServer::Quoting

Included in:
ActiveRecord::ConnectionAdapters::SQLServerAdapter
Defined in:
lib/active_record/connection_adapters/sqlserver/quoting.rb

Constant Summary collapse

QUOTED_TRUE =
"1".freeze
QUOTED_FALSE =
"0".freeze
QUOTED_STRING_PREFIX =
"N".freeze

Instance Method Summary collapse

Instance Method Details

#column_name_matcherObject



74
75
76
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 74

def column_name_matcher
  COLUMN_NAME
end

#column_name_with_order_matcherObject



78
79
80
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 78

def column_name_with_order_matcher
  COLUMN_NAME_WITH_ORDER
end

#fetch_type_metadata(sql_type, sqlserver_options = {}) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 11

def (sql_type, sqlserver_options = {})
  cast_type = lookup_cast_type(sql_type)
  SQLServer::SqlTypeMetadata.new(
    sql_type: sql_type,
    type: cast_type.type,
    limit: cast_type.limit,
    precision: cast_type.precision,
    scale: cast_type.scale,
    sqlserver_options: sqlserver_options
  )
end

#quote_column_name(name) ⇒ Object



35
36
37
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 35

def quote_column_name(name)
  SQLServer::Utils.extract_identifiers(name).quoted
end

#quote_default_expression(value, column) ⇒ Object



39
40
41
42
43
44
45
46
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 39

def quote_default_expression(value, column)
  cast_type = lookup_cast_type(column.sql_type)
  if cast_type.type == :uuid && value =~ /\(\)/
    value
  else
    super
  end
end

#quote_string(s) ⇒ Object



23
24
25
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 23

def quote_string(s)
  SQLServer::Utils.quote_string(s)
end

#quote_string_single(s) ⇒ Object



27
28
29
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 27

def quote_string_single(s)
  SQLServer::Utils.quote_string_single(s)
end

#quote_string_single_national(s) ⇒ Object



31
32
33
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 31

def quote_string_single_national(s)
  SQLServer::Utils.quote_string_single_national(s)
end

#quoted_date(value) ⇒ Object



64
65
66
67
68
69
70
71
72
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 64

def quoted_date(value)
  if value.acts_like?(:time)
    Type::DateTime.new.serialize(value)
  elsif value.acts_like?(:date)
    Type::Date.new.serialize(value)
  else
    value
  end
end

#quoted_falseObject



56
57
58
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 56

def quoted_false
  QUOTED_FALSE
end

#quoted_trueObject



48
49
50
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 48

def quoted_true
  QUOTED_TRUE
end

#unquoted_falseObject



60
61
62
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 60

def unquoted_false
  0
end

#unquoted_trueObject



52
53
54
# File 'lib/active_record/connection_adapters/sqlserver/quoting.rb', line 52

def unquoted_true
  1
end