class Setl_tool

Attributes

extract[R]
load[RW]
target_db[RW]
target_table[RW]
transform[R]

Public Class Methods

new(src_type = "csv", headers = false, src_path) click to toggle source

TODO Change headers to true

# File lib/setl_tool.rb, line 29
def initialize(src_type = "csv",
               headers = false,
              src_path)
  @src_type = src_type
  @headers = headers
  @src_path = src_path
  @extract = Extract.new(@src_type,
                         @headers,
                         @src_path)
  @transform = Transform.new
  #@load = Load.new
end