1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

added a note on possible backward-compat issue (schema format number change)

This commit is contained in:
Kenichi Ishigaki 2012-01-16 17:02:40 +00:00
parent 1448c27780
commit 7646699b08

View file

@ -1,7 +1,13 @@
Changes for Perl extension DBD-SQLite
1.36_01 to be released
*** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
- Updated to SQLite 3.7.10 (ISHIGAKI)
Note that this release changed the default schema format
number, that means newly created database files will be
unreadable by version prior to SQLite 3.3.0 (2006-01-10)
unless you explicitly issue "PRAGMA legacy_file_format=ON".
- Enabled SQLITE_ENABLE_FTS4
- Enabled SQLITE_ENABLE_STAT3
- Resolved #73159: FTS tokenizer segfault (ISHIGAKI)