Edgewall Software

Changes between Version 30 and Version 31 of PySqlite


Ignore:
Timestamp:
Sep 16, 2007, 11:47:53 AM (17 years ago)
Author:
ThurnerRupert
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • PySqlite

    v30 v31  
    126126This test should not fail.
    127127
     128=== Check if database is ok ===
     129Sometimes vacuum helps to fix inconsistencies in the db. See also [http://www.sqlite.org/pragma.html pragma], [http://www.sqlite.org/sqlite.html command line], [http://www.sqlite.org/lang_vacuum.html vacuum].
     130{{{
     131$ sqlite3 trac-parent/mytracinstance/db/trac.db
     132sqlite> PRAGMA integrity_check;
     133... some errors ...
     134sqlite> VACUUM;
     135sqlite> PRAGMA integrity_check;
     136ok
     137}}}
     138
    128139=== Common ''Oops'' ===
    129140