class Sequel::Postgres::AutoParameterizeInArray::TreatStringListAsUntypedArray::ParameterizedUntypedPGArray
Wrapper for untyped PGArray
values that will be parameterized directly into the query. This should only be used in cases where you know the value should be added as a query parameter.
Public Instance Methods
to_s_append(ds, sql)
click to toggle source
# File lib/sequel/extensions/pg_auto_parameterize_in_array.rb 60 def to_s_append(ds, sql) 61 sql.add_arg(@value) 62 end