Method: Sequel::Postgres.force_standard_strings

Defined in:
lib/sequel/adapters/shared/postgres.rb

.force_standard_stringsObject

By default, Sequel forces the use of standard strings, so that ‘\’ is interpreted as \ and not . While PostgreSQL <9.1 defaults to interpreting plain strings, newer versions use standard strings by default. Sequel assumes that SQL standard strings will be used. Setting this to false means Sequel will use the database’s default.



47
48
49
# File 'lib/sequel/adapters/shared/postgres.rb', line 47

def force_standard_strings
  @force_standard_strings
end