summaryrefslogtreecommitdiff
path: root/ext/sqlite3/sqlite3.c
Commit message (Collapse)AuthorAgeFilesLines
...
| * Merge safe_mode changes into extensions that are in sync in both branchesKalle Sommer Nielsen2010-04-261-1/+11
| |
* | Good patch from Brad Dewar that adds missing createCollation()Rasmus Lerdorf2012-01-291-0/+121
| | | | | | | | | | method. Fixes bug #60871 and is related to bug #55226
* | - Year++Felipe Pena2012-01-011-1/+1
| |
* | Fixed memset usage (identified by coverity)Ilia Alshanetsky2011-08-101-3/+3
| |
* | - Make usage of new PHP_FE_END macroFelipe Pena2011-07-251-3/+3
| |
* | - Added new parameter parsing option (p - for valid path (string without ↵Felipe Pena2011-06-061-1/+1
| | | | | | | | | | | | | | | | null byte in the middle)) # The tests will be fixed in the next commits
* | Fix bug #54692 (SQLite3::open() Return Value) by correcting the SQLite3::open()Adam Harvey2011-05-101-1/+1
| | | | | | | | | | prototype.
* | - Fixed memory leak on SQLite3Result and SQLite3Stmt when assigning to a ↵Felipe Pena2011-01-071-1/+1
| | | | | | | | reference.
* | Implemented FR #53466 (SQLite3Result::columnType() should return false after ↵Scott MacVicar2011-01-061-0/+5
| | | | | | | | all of the rows have been fetched).
* | Fix error with initialisation flag being set too early. If encryption is ↵Scott MacVicar2011-01-031-3/+3
| | | | | | | | | | | | | | | | enabled and fails to decrypt a crash can occur. Also fix a WS error.
* | - Year++Felipe Pena2011-01-011-1/+1
| |
* | Add SQLite3_Stmt::readOnly for checking if a statement is read onlyScott MacVicar2010-12-311-4/+25
| |
* | - Fixed bug #53463 (sqlite3 columnName() segfaults on bad column_number)Felipe Pena2010-12-031-1/+7
| |
* | - #51295, SQLite3::busyTimeout not existingPierre Joye2010-06-201-0/+32
| |
* | Fixed bug #52010 (open_basedir restrictions mismatch on vacuum command).Ilia Alshanetsky2010-06-091-1/+1
| |
* | Added caches to eliminate repeatable run-time bindings of functions, ↵Dmitry Stogov2010-05-241-6/+3
| | | | | | | | classes, constants, methods and properties
* | Removed safe_modeKalle Sommer Nielsen2010-04-261-1/+11
|/ | | | | | | * 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
|
* - Added MAKE_COPY_ZVAL(ppzv, pzv) macroFelipe Pena2009-12-081-9/+3
|
* MFH make SQLite3::enableExceptions() return the previous value.Scott MacVicar2009-06-081-2/+4
|
* MFH: fix ZTS buildAntony Dovgal2009-05-081-0/+1
|
* - Fix buildFelipe Pena2009-05-071-0/+1
|
* Print warning when using loadExtension on non cli, cgi and embededScott MacVicar2009-05-071-0/+9
|
* MFH Add the ability to enable exceptions rather than warnings for sqlite3, ↵Scott MacVicar2009-04-271-60/+96
| | | | needed for pyrus.
* MFH Fix bug #47678 - Allow loadExtension to be disabled in SQLite3Scott MacVicar2009-03-171-0/+6
|
* Removed unused varIlia Alshanetsky2009-02-181-1/+1
|
* The constructor should also throw exceptions, make this semi useful now.Scott MacVicar2009-02-101-6/+15
|
* Fix build on WindowsScott MacVicar2009-01-281-1/+1
|
* fix buildAntony Dovgal2009-01-241-1/+1
|
* MFH Add blobOpen method for reading binary blobs via streams.Scott MacVicar2009-01-241-2/+188
|
* MFH Fix bug #47159 - Any SQLite3 statement prepared should be added to the ↵Scott MacVicar2009-01-201-7/+17
| | | | freelist
* MFH Fix bug #47145 - As soon as sqlite3_step is called on a statement it ↵Scott MacVicar2009-01-201-8/+7
| | | | always must be finalised.
* Fixed bug #47141 - Unable to fetch error messages after the database can't ↵Scott MacVicar2009-01-191-3/+3
| | | | be opened.
* Added missing initializationIlia Alshanetsky2009-01-041-1/+1
|
* MFH:Felipe Pena2009-01-031-69/+19
| | | | | | - Removed unnecessary repeated arginfos - Changed sqlite3stmt and sqlite3result to ZEND_ACC_PRIVATE to avoid reflection instantiation
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH Stop using sqlite3_aggregate_count() as this is now deprecated.Scott MacVicar2008-12-241-13/+20
|
* - MFH: Fixed memory leaks in createFunction and createAggregate methodsFelipe Pena2008-11-281-0/+3
|
* Fixed bug #46409 (__invoke method called outside of object context when ↵Dmitry Stogov2008-11-271-1/+1
| | | | using array_map)
* - MFH: declarations must be.. 1stPierre Joye2008-11-201-1/+3
|
* MFH: Fix #46241 (stacked error_handlers, error_handling in general)Etienne Kneuss2008-11-191-2/+9
|
* - MFH: declaration has to be first...Pierre Joye2008-11-181-1/+1
|
* MFH Fix #46033 - Segfault when instantiating SQLite3stmt and SQLite3Result ↵Scott MacVicar2008-11-171-3/+70
| | | | directly.
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-28/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+28
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-28/+0
|
* MFH: SQLite3::escapeString can be static as it doesn't rely on an instance ↵Scott MacVicar2008-09-301-1/+1
| | | | of SQLite
* Fixed bug #46033 (Segfault when instantiating SQLite3Stmt and SQLite3Result)Scott MacVicar2008-09-151-9/+16
|
* - MFH: Fixed bug #45798 (sqlite3 doesn't notice if variable was bound)Felipe Pena2008-08-121-0/+1
|
* - MFH: Added parameter TSRMLS_DC in zend_is_callable()Felipe Pena2008-08-021-3/+3
|