I have a .sql file containing thousands of individual plugin statements. It takes forever. I am trying to find a way to do this more efficiently. In python, the sqlite3 library cannot do things like ".read" or ".import", but executescript is too slow for many inserts.
I installed the sqlite3.exe shell in the hope of using ".read" or ".import", but I cannot figure out how to use it. Running it through django in eclipse does not work, because it expects the database to be at the root of my C drive, which seems silly. Running it through the command line does not work because it cannot find my database file (unless I am doing something wrong)
Any tips?
Thanks!
python sql django sqlite sqlite3
Jpc
source share