CSQL/README.md

13 lines
997 B
Markdown
Raw Normal View History

2023-03-20 22:35:00 +00:00
# CSQL (CSV TO SQL)
2023-03-20 21:52:47 +00:00
An assistant tool to easily map a CSV spreadsheets collumns to a database tables' fields. Great for mass uploading products from a manufacturer provided catalog to an e-shop.
2023-03-20 22:35:00 +00:00
#### What does it do?
2023-03-20 21:52:47 +00:00
- [x] Checks if all rows in a spreadsheet collumn bound to a tables field abide by the fields' rules (variable type and length), shows errors and allows to fix them easily.
For non-technical people: makes sure the spreadsheet follows some database rules and doesn't break anything :)
2023-03-20 22:35:25 +00:00
- [ ] Check if the database already has such an entry, eg. product with the same name exists already, and allows to update the data to the data present in the spreadsheet.
2023-03-20 21:52:47 +00:00
- [ ] Input Sanitisation, eg. Simple mass text update for capitalization, Spell checking
- [ ] Create a CSV from a given Database
- [ ] Support for all major database types
- [ ] Common e-commerce platform prefabs (Opencart, Prestashop, Saleor based, Strapi based..)
- [ ] Simple Database backups and undo database updates