Sha256: b0990acf5d859754db8541517d714cb9674ad7055511bbdf7c0072260c57d566

Contents?: true

Size: 619 Bytes

Versions: 2

Compression:

Stored size: 619 Bytes

Contents

module ActiveRecord
  class Base
    # Copy data to a file passed as a string (the file path) or to lines that are passed to a block

    # Copy data from a CSV that can be passed as a string (the file path) or as an IO object.
    # * You can change the default delimiter passing delimiter: '' in the options hash
    # * You can map fields from the file to different fields in the table using a map in the options hash
    # * For further details on usage take a look at the README.md
    def self.pg_upsert path_or_io, options = {}
      PostgresUpsert::Writer.new(self, path_or_io, options).write
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
postgres_upsert-3.2.0-java lib/postgres_upsert/active_record.rb
postgres_upsert-2.0.0 lib/postgres_upsert/active_record.rb