Edgewall Software

Changes between Version 52 and Version 53 of PySqlite


Ignore:
Timestamp:
Sep 30, 2010, 2:40:31 PM (14 years ago)
Author:
Jon Hadley <me@…>
Comment:

Header advice

Legend:

Unmodified
Added
Removed
Modified
  • PySqlite

    v52 v53  
    198198This test should not fail.
    199199
     200To install SQLite, your system may require the development headers. Without these you will get various GCC related errors when attempting to build:
     201
     202{{{
     203$ apt-get install libsqlite3-dev
     204}}}
     205
    200206=== Check if database is ok ===
    201207Sometimes 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].