class Upsert class Buffer # @private class SQLite3_Database < Buffer include Quoter def chunk return if rows.empty? row = rows.shift %{INSERT OR IGNORE INTO "#{table_name}" (#{row.columns_sql}) VALUES (#{row.values_sql});UPDATE "#{table_name}" SET #{row.set_sql} WHERE #{row.where_sql}} end def execute(sql) connection.execute_batch sql end def quote_string(v) SINGLE_QUOTE + SQLite3::Database.quote(v) + SINGLE_QUOTE end def quote_binary(v) X_AND_SINGLE_QUOTE + v.unpack("H*")[0] + SINGLE_QUOTE end def quote_time(v) quote_string [v.strftime(ISO8601_DATETIME), sprintf(USEC_SPRINTF, v.usec)].join('.') end def quote_ident(k) DOUBLE_QUOTE + SQLite3::Database.quote(k.to_s) + DOUBLE_QUOTE end def quote_boolean(v) s = v ? 't' : 'f' quote_string s end def quote_big_decimal(v) v.to_f end end end end