csv-sql 0.1.0

A simple CLI tool to generate SQL tables from CSV files
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# CSV-SQL
## A simple CLI tool to generate SQL tables from CSV files

### Usage
#### Generate SQL table creation statements from CSV files
```bash
cql <csv-file> [options]
```

### TODO
- [x] Generate SQL table creation statements from CSV files
- [ ] ... with headers
- [ ] ... with headers and data types
- [ ] ... with headers, data types and primary keys
- [ ] ... with headers, data types, primary keys and constraints
- [ ] ... with headers, data types, primary keys, constraints and foreign keys