Method: CSVR::App#create

Defined in:
lib/csvr.rb

#create(db, table) ⇒ Object



36
37
38
39
40
41
# File 'lib/csvr.rb', line 36

def create(db, table)
	self.parse
	self.format
	db = Database.new(db, table, @headers, @rows)
	db.create
end