class BulkInsert::StatementAdapters::SQLiteAdapter

Public Instance Methods

insert_ignore_statement() click to toggle source
# File lib/bulk_insert/statement_adapters/sqlite_adapter.rb, line 6
def insert_ignore_statement
  'OR IGNORE'
end
on_conflict_statement(_columns, _ignore, _update_duplicates) click to toggle source
# File lib/bulk_insert/statement_adapters/sqlite_adapter.rb, line 10
def on_conflict_statement(_columns, _ignore, _update_duplicates)
  ''
end
primary_key_return_statement(_primary_key) click to toggle source
# File lib/bulk_insert/statement_adapters/sqlite_adapter.rb, line 14
def primary_key_return_statement(_primary_key)
  ''
end