From 18254d2a828a04bf922cb841aba978deb8063288 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Tue, 9 Feb 2010 15:19:01 +0000 Subject: [PATCH] DBD::SQLite: added the POSSIBLY BREAK YOUR OLD APP warning --- Changes | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 7272e6a..17670e2 100644 --- a/Changes +++ b/Changes @@ -1,14 +1,16 @@ Changes for Perl extension DBD-SQLite 1.30_01 to be released + *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** + - Resolved #54271: Inserting a string with utf-8 flag on + corrupts BLOB data; now BLOB data is always stored as bytes + (without the utf-8 flag) even if it has the flag set (ISHIGAKI) + - implemented NUM_OF_PARAMS statement handle attribute (ISHIGAKI) - added experimental "sqlite_allow_multiple_statements" database handle attribute, and "sqlite_unprepared_statements" statement handle attribute, to allow processing a SQL dump (ISHIGAKI) - - Resolved #54271: Inserting a string with utf-8 flag on - corrupts BLOB data; now BLOB data is stored as bytes even if - it has the utf-8 flag set (ISHIGAKI) 1.29 Fri 8 Jan 2010 - Updated to SQLite 3.6.22 (DUNCAND)