Skip to content
Manu edited this page Apr 8, 2016 · 3 revisions

CSV

Options

string file : Path to csv file
string delimiter : Value separator
bool header : Use first line as header

Example
source:
    type: csv
    filename: file.csv
    delimiter: ","
    header: true

JSON

Options

string file : Path to json file

Example
source:
  type: json
  filename: file.json

SQL

Options

string dbtype : mysql, sqlite...
string dbname
string host
string username
string password
string charset
string table
string query

Example
source:
  type: db
  dbtype: mysql
  dbname: io
  host: localhost
  username: root
  table: test
Clone this wiki locally