Changes
- Upgraded bundled SQLite to 3.5.4
- Added
. SQLITE3_NUM, SQLITE3_NUM and SQLITE3_BOTH constants for fetch_array
. SQLITE3_INTEGER, SQLITE3_FLOAT, SQLITE3_TEXT, SQLITE3_BLOB, SQLITE3_NULL constants for parameter binding
. Added columnName method
. Added encryption support if the library supports it
. Added stream support for blob datatype
- Changed
. numColumn to numColumns for consistency
. Cast values to prepared statements prior to execution
- Removed
. Unused case from SQLite authorizer
. sqlite3.enable_extensions INI option in favour of sqlite3.extension_dir
- Performance
. Check if a return value is used before allocating zvals
. Fix memory leaks in non prepared statements
- Building
. Check for SQLite 3.3.9+ in external versions
. Build debug version of libsqlite when using debug build of PHP
- Added unit tests
- Fixed PHP 5.3 support