Steve Frierdich wrote:
Can anyone give me a step-by-step instruction on how to update
databases to a version 3 database sqlite version 3 can be used? I
referenced the website http://www.sqlite.org/version3.html ,as
indicated by Tito Ciuro, but when I ran the sqlite.exe program from a
command prompt with the parameters as specified from the website, it
failed:
C:\SQLITE>sqlite 33.db .dump | sqlite3 new.db
this is for linux.
In dos run:
C:\SQLITE>sqlite 33.db .dump >dump.sql
C:\SQLITE>sqlite3 new.db ".read dump.sql"
Paolo