If you old database has been created with python-sqlite version
=< 1.1
- Install sqlite2: Windows or linux.
- Install sqlite3: Windows
or linux.
- Convert you old database to the new sqlite3 format:
- sqlite <old database> .dump | sqlite3 <new database>
Convert the old sqlite3 bibus database to the new format
There is a script in bibus-1.1.1/db_models named savedata.sql to help
you.
Do the following:
- create a new database by making a copy of the file
- bibus-1.1.1/db_models/biblio.sqlite3
- we will call this new file <new database>
- linux:
- cat savedata.sqlite | sqlite3 <old database> | sqlite3
<new database>
- Windows:
- type savedata.sqlite | sqlite3 <old database> | sqlite3
<new database>
You can now use this database with bibus and python-sqlite2