summaryrefslogtreecommitdiff
path: root/ext/sqlite/sqlite.c
Commit message (Collapse)AuthorAgeFilesLines
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* - Fixed possible crash when calling SQLiteDatabase::{ArrayQuery, ↵Felipe Pena2009-10-121-1/+1
| | | | SingleQuery} methods using Reflection
* Fix bug #48679 - Crash in SQLite with count on an unbuffered query setScott MacVicar2009-06-251-0/+5
|
* - Dropped *_TEXT* macros in favor of unicode macros direct usageFelipe Pena2009-05-251-1/+1
|
* - Removed:Felipe Pena2009-03-261-4/+2
| | | | | | | | | | | | - UG(unicode) checks - pcre_cache_entry.unicode_mode - Changed: - ZEND_STR_TYPE -> IS_UNICODE - convert_to_text -> convert_to_unicode - convert_to_text_ex -> convert_to_unicode_ex (Felipe, Steph)
* - Fixed buildFelipe Pena2009-03-231-2/+2
|
* MFB: Improved parameter parsingIlia Alshanetsky2009-03-221-2/+2
|
* - This is PHP 6 - if this ... ever gets outMarcus Boerger2009-03-101-1/+1
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - Fixed memory leakFelipe Pena2008-12-011-0/+2
|
* Fixed bug #46409 (__invoke method called outside of object context when ↵Dmitry Stogov2008-11-271-2/+2
| | | | using array_map)
* Error handler isn't properly restored when using fetchObject() with SQLiteScott MacVicar2008-11-221-2/+6
|
* Fix #46241 (stacked error_handlers, error_handling in general)Etienne Kneuss2008-11-191-2/+16
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro (again!)Felipe Pena2008-11-171-66/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+66
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-66/+0
|
* - Constness (Added const qualifier to several function parameters)Felipe Pena2008-08-121-2/+2
|
* Fix error_handling usage in various extensionsEtienne Kneuss2008-08-081-16/+5
|
* - Added parameter TSRMLS_DC in zend_is_callable()Felipe Pena2008-08-021-3/+3
|
* Fixed uninitialized dataDmitry Stogov2008-07-251-0/+1
|
* MFB:Felipe Pena2008-07-051-44/+190
| | | | | | - Added arginfo (methods) - Removed #include "zend_arg_defs.c"
* - MFB: Added arginfo (functions)Felipe Pena2008-07-011-39/+274
|
* MFB: Fix memory issues with statement being deleted twiceScott MacVicar2008-03-091-2/+2
|
* Fixed bug #42203 (Clear SQLite result sets before closing database.)Scott MacVicar2008-03-081-0/+15
|
* New macro for check void parametersFelipe Pena2008-02-281-26/+26
|
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-12/+12
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-6/+6
|
* MFBIlia Alshanetsky2007-05-281-2/+2
|
* more magic number fixesAntony Dovgal2007-01-031-1/+1
|
* Bump year.Sebastian Bergmann2007-01-011-2/+2
|
* Error message clean upHannes Magnusson2006-10-081-1/+1
| | | | | (patch by Matt W (php_lists -AT- realpain.com))
* Update SQLITE2 (non-PDO parts at least) for PHP6/UnicodeSara Golemon2006-10-071-162/+336
| | | | | | Change default build of bundled libsqlite to utf8 mode iso-8859 mode is still available using --disable-sqlite-utf8
* Disabled autoconversion of hash keys (from string to unicode) for PHP arraysDmitry Stogov2006-09-191-3/+3
|
* MFB: Added missing validation checks around expand_filepath()Ilia Alshanetsky2006-09-161-4/+15
|
* implement zend_unicode_to_string() and zend_string_to_unicode()Antony Dovgal2006-08-081-4/+4
| | | | | part #2 (of 2)
* MFB: E_ERROR -> E_RECOVERABLE_ERRORIlia Alshanetsky2006-06-141-1/+1
|
* Added automatic module globals managementDmitry Stogov2006-06-131-5/+11
|
* - Methods have flagsMarcus Boerger2006-05-091-43/+43
|
* MFB51: Fixed bug #29476 (sqlite_fetch_column_types() locks the databaseIlia Alshanetsky2006-04-181-1/+3
| | | | | forever).
* fix compile failureAntony Dovgal2006-04-151-2/+1
|
* MF51: fix bug #36898 (__set() leaks in classes extending internal ones)Antony Dovgal2006-03-291-5/+2
| | | | | | | Added: ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC) ZEND_API void zend_object_std_dtor(zend_object *object TSRMLS_DC)
* Nuke int32_t (everywhere except streams layer) and signed/unsigned warningsDmitry Stogov2006-03-021-4/+4
|
* Portable unicode string API:Dmitry Stogov2006-02-211-3/+3
| | | | | | | | - use the same type (int) for zval.value.usr.len and zval.value.str.len - use union "zstr" as char*/UChar* mixture instead of void* - Z_UNISTR() and Z_UNILEN() no longer check for Z_TYPE() - nuke int32_t from ZE (not finisned)
* Start nuking safe_mode. Still a lot of work to do...Andi Gutmans2006-02-191-29/+3
|
* - Fix iterator handling (how did the fix after api change get lost here?)Marcus Boerger2006-02-161-3/+9
| | | | | - In php 5 we do not want to return &new
* Made server wide switch for unicode on/off (according to PDM).Dmitry Stogov2006-02-131-15/+15
|
* Unicode stuff is changed according to decision maden on PDM.Dmitry Stogov2006-01-171-3/+3
| | | | | Now IS_BINRAY data type is removed and IS_STRING starts behave as IS_BINARY in unicode mode. IS_STRING is incompatible with IS_UNICODE, so ALL functions should be improved to support unicode mode.
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Nuke php3 legacyfoobar2005-12-061-5/+5
|