Method: Database#initialize

Defined in:
lib/csvr/sqlitedb.rb

#initialize(db, table, headers, rows) ⇒ Database

Returns a new instance of Database.



7
8
9
10
11
12
# File 'lib/csvr/sqlitedb.rb', line 7

def initialize(db, table, headers, rows)
	@db = db
	@table = table
	@headers = headers
	@rows = rows
end