We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should support different data file types: mainly: csv, json, and yaml.
csv
json
yaml
When importing we should support:
.sql
mysql
"id","country_code","country_code_iso2","country_code_iso3","name","decimal_point","thousands_separator","added","updated","deleted" 1,'AF','AF','AFG','Afghanistan','.',',','2012-09-20 12:43:09','2015-10-07 11:05:58',NULL 2,'AX','AX','ALA','Aland Islands','.',',','2012-09-20 12:43:09','2015-10-07 11:05:58',NULL 3,'AL','AL','ALB','Albania','.',',','2012-09-20 12:43:09','2015-10-07 11:05:58',NULL 4,'DZ','DZ','DZA','Algeria','.',',','2012-09-20 12:43:09','2015-10-07 11:05:58',NULL 5,'AS','AS','ASM','American Samoa','.',',','2012-09-20 12:43:09','2015-10-07 11:05:58',NULL
schema: the_schema table: country data: - id: 1 country_code: AF country_code_iso2: AF country_code_iso3: AFG name: Afghanistan decimal_point: '.' thousands_separator: ',' - id: 2 country_code: AX country_code_iso2: AX country_code_iso3: ALA name: Aland Island decimal_point: '.' thousands_separator: ',' - id: 3 country_code: AL country_code_iso2: AL country_code_iso3: ALB name: Albania decimal_point: '.' thousands_separator: ',' - id: 4 country_code: DZ country_code_iso2: DZ country_code_iso3: DZA name: Algeria decimal_point: '.' thousands_separator: ',' - id: 5 country_code: AS country_code_iso2: AS country_code_iso3: ASM name: American Samoa decimal_point: '.' thousands_separator: ','
{ "schema": "the_schema", "table": "country", "data": [ { "id": 1, "country_code": "AF", "country_code_iso2": "AF", "country_code_iso3": "AFG", "name": "Afghanistan", "decimal_point": ".", "thousands_separator": "," }, { "id": 2, "country_code": "AX", "country_code_iso2": "AX", "country_code_iso3": "ALA", "name": "Aland Island", "decimal_point": ".", "thousands_separator": "," }, { "id": 3, "country_code": "AL", "country_code_iso2": "AL", "country_code_iso3": "ALB", "name": "Albania", "decimal_point": ".", "thousands_separator": "," }, { "id": 4, "country_code": "DZ", "country_code_iso2": "DZ", "country_code_iso3": "DZA", "name": "Algeria", "decimal_point": ".", "thousands_separator": "," }, { "id": 5, "country_code": "AS", "country_code_iso2": "AS", "country_code_iso3": "ASM", "name": "American Samoa", "decimal_point": ".", "thousands_separator": "," } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We should support different data file types: mainly:
csv
,json
, andyaml
.When importing we should support:
Potential Solutions
.sql
and import usingmysql
commandCSV
Yaml
Json
The text was updated successfully, but these errors were encountered: