Init directly from a sqlite db
I know sqlite can be converted to csv, then imported, but having it be a direct import is easier.
Making import from existing databases is something that we want to do, it's just not something we are working on at this current moment.
Agree this is a great feature. In the meantime. Something like this should work if you have a running dolt sql-server.
https://pypi.org/project/sqlite3-to-mysql/
And something like this will convert your dump so you can pipe it into dolt sql like so dolt sql <:
https://github.com/tengla/sqlite3-to-mysql
You can use something like https://github.com/cube2222/octosql.
I'm interested in working on this issue. My initial intuition is that, all other things being equal, using a pure Go SQLite file parsing library would probably be the simplest approach. If so, how about https://github.com/alicebob/sqlittle? Or would anyone recommend a different Go library, or a different approach altogether?