summaryrefslogtreecommitdiff
path: root/ext/sqlite/sqlite.c
Commit message (Collapse)AuthorAgeFilesLines
* - Move the old sqlite extension to PECLJohannes Schlüter2010-11-191-3425/+0
| | | | | | # discussed in http://www.mail-archive.com/internals@lists.php.net/msg47463.html
* Added caches to eliminate repeatable run-time bindings of functions, ↵Dmitry Stogov2010-05-241-3/+2
| | | | classes, constants, methods and properties
* Fixed a possible arbitrary memory access inside sqlite extension. Reported ↵Ilia Alshanetsky2010-04-281-2/+2
| | | | by Mateusz Kocielski.
* Removed safe_modeKalle Sommer Nielsen2010-04-261-13/+4
| | | | | | | * Removed ini options, safe_mode* * Removed --enable-safe-mode --with-exec-dir configure options on Unix * Updated extensions, SAPI's and core * php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore
* 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
* MFH Fix bug #48679 - Crash in SQLite with count on an unbuffered query set ↵Johannes Schlüter2009-06-251-0/+5
| | | | (Scott)
* Improved parameter parsingIlia Alshanetsky2009-03-221-3/+3
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFH: 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)
* MFH Error handler isn't properly restored when using fetchObject() with SQLiteScott MacVicar2008-11-221-2/+6
|
* MFH: Fix #46241 (stacked error_handlers, error_handling in general)Etienne Kneuss2008-11-191-2/+16
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-66/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+66
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-66/+0
|
* Updated functions-signatures (const)Alexey Zakhlestin2008-10-161-2/+2
|
* MFH: Fix error_handling usage in various extensionsEtienne Kneuss2008-08-081-16/+5
|
* - MFH: Added parameter TSRMLS_DC in zend_is_callable()Felipe Pena2008-08-021-3/+3
|
* Fixed uninitialised dataDmitry Stogov2008-07-251-0/+1
|
* - Added arginfo (methods)Felipe Pena2008-07-051-44/+190
| | | | | - Removed #include "zend_arg_defs.c"
* - Added arginfo (functions)Felipe Pena2008-07-011-39/+274
|
* MFH: New way for check void parametersFelipe Pena2008-03-101-26/+26
|
* Fix memory issues with statement being deleted twiceScott MacVicar2008-03-091-2/+2
|
* MFB: Fixed bug #42203 (Clear SQLite result sets before closing database.)Scott MacVicar2008-03-081-0/+15
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-5/+5
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-6/+6
|
* Remove pointless RINITIlia Alshanetsky2007-05-191-6/+1
|
* Fixed bug #41285 (Improved fix for CVE-2007-1887 to work with non-bundledIlia Alshanetsky2007-05-051-1/+1
| | | | | sqlite2 lib).
* use safe_reallocStanislav Malyshev2007-03-061-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* fix ZTS build without SPL enabledAntony Dovgal2006-10-201-1/+1
|
* Added missing validation checks around expand_filepath()Ilia Alshanetsky2006-09-161-15/+10
|
* Added automatic module globals managementDmitry Stogov2006-06-151-5/+11
|
* E_ERROR -> E_RECOVERABLE_ERRORIlia Alshanetsky2006-06-141-1/+1
|
* - Update after api changesMarcus Boerger2006-05-101-44/+47
|
* Fixed bug #29476 (sqlite_fetch_column_types() locks the database forever).Ilia Alshanetsky2006-04-181-1/+3
|
* 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) to initialize and destroy zend_object structs
* bump year and license versionfoobar2006-01-011-3/+3
|
* MFH: nuke php3 legacyfoobar2005-12-061-5/+5
|
* MFH: list_entry -> zend_rsrc_list_entryfoobar2005-12-051-3/+3
|
* Wrap the php_session.h include in the same ifdef as the rest of theBrian France2005-12-051-69/+71
| | | | | session code.
* MFH: Fixed wrong usage of ZEND_EXTENSION_API_NO (these are not Zend exts :)foobar2005-11-251-1/+1
|
* Fixed bug #35248 (sqlite_query() doesnt set error_msg when return value isIlia Alshanetsky2005-11-171-5/+8
| | | | | being used).
* MFH: fix #35197 (Destructor is not called) and similar issues in other ↵Antony Dovgal2005-11-141-1/+1
| | | | extensions
* MFH: Do not set authorizer unless safe_mode or open_basedir are being used.Ilia Alshanetsky2005-10-181-1/+3
|
* unused varAntony Dovgal2005-10-181-1/+1
|
* MFH: Fixed bug #34884 (Possible crash in ext/sqlite when sqlite.assoc_caseIlia Alshanetsky2005-10-171-11/+11
| | | | | is being used).
* MFH: Allow retrieval of query parse errors from SQLite.Ilia Alshanetsky2005-09-081-19/+46
|