On Thu, 07 Oct 2004 16:13:48 -0400, Steve Frierdich <[EMAIL PROTECTED]> wrote: > I downloaded sqlite3.exe to perform an upgrade of a database from > version 2 to version 3. > When I upgraded a version 2 database to a version 3 database with the > same name the operation failed.The upgrade failed because the > application kept saying SQL error: file is encrypted or is not a database. > > C:\SQLITE> sqlite biomission.db .dump | sqlite3 biomission.db
Use a different filename for the sqlite3 database. You have both processes trying to read biomission.db, and the second one can't recognize it -- and would trash the data if it could. - Vlad