Public Instance methods
sqlite_json_op()
Wrap the receiver in an JSONOp
so you can easily use the SQLite
json functions and operators with it.
[show source]
# File lib/sequel/extensions/sqlite_json_ops.rb 256 def sqlite_json_op 257 JSONOp.new(self) 258 end
sqlite_jsonb_op()
Wrap the receiver in an JSONBOp
so you can easily use the SQLite
jsonb functions and operators with it.
[show source]
# File lib/sequel/extensions/sqlite_json_ops.rb 262 def sqlite_jsonb_op 263 JSONBOp.new(self) 264 end