https://github.com/garronej/sqlite-custom
https://github.com/garronej/sqlite-custom
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/garronej/sqlite-custom
- Owner: garronej
- Created: 2018-05-28T15:18:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-03-24T06:49:28.000Z (about 3 years ago)
- Last Synced: 2025-02-05T11:19:01.813Z (4 months ago)
- Language: TypeScript
- Size: 55.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sqlite-custom
Convert MySQL database to SQLite3 database:
https://github.com/dumblob/mysql2sqlite````bash
$ mysqldump --no-data -u root -pabcde12345 chan_dongle > dump_mysql.sql
$ ./mysql2sqlite dump_mysql.sql | sqlite3 test.db
````