summaryrefslogtreecommitdiff
path: root/ext/sqlite
Commit message (Collapse)AuthorAgeFilesLines
...
* zts fixesIlia Alshanetsky2006-11-301-2/+3
|
* 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-073-168/+345
| | | | | | 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-162-4/+19
|
* add new testAntony Dovgal2006-09-101-0/+18
|
* fix #38759 (PDO sqlite2 empty query causes segfault)Antony Dovgal2006-09-091-1/+1
|
* implement zend_unicode_to_string() and zend_string_to_unicode()Antony Dovgal2006-08-081-4/+4
| | | | | part #2 (of 2)
* fix testAntony Dovgal2006-06-201-1/+1
|
* 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-193-36/+4
|
* - 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-014-12/+12
|
* MFB51: Don't lose track of exec() errors in pdo_sqlite2Ilia Alshanetsky2005-12-211-1/+5
|
* MFB: add missing skipif conditions, fix existing onesAntony Dovgal2005-12-211-0/+2
| | | | | add one missing test
* MFB51:Ilia Alshanetsky2005-12-208-34/+12
| | | | | | Updated libsqlite in ext/sqlite to 2.8.17. Use in-memory database for tests.
* MFB: int -> longAntony Dovgal2005-12-171-1/+1
|
* - Nuke php3 legacyfoobar2005-12-062-7/+7
|
* - 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-70/+72
| | | | | session code.
* MFB51: Regen files so they work properly with gcov.Ilia Alshanetsky2005-12-041-1232/+517
|
* - Use right define: ZEND_MODULE_API_NO as these are PHP modules, not Zend ↵foobar2005-11-251-1/+1
| | | | extensions
* MFB51: Fixed bug #35248 (sqlite_query() doesnt set error_msg when returnIlia Alshanetsky2005-11-172-5/+23
| | | | | value is being used).
* fix #35197 (Destructor is not called) and similar issues in other extensionsAntony Dovgal2005-11-141-1/+1
|
* Do not set authorizer unless safe_mode or open_basedir are being used.Ilia Alshanetsky2005-10-181-1/+3
|
* nuke unused var and silence warningsAntony Dovgal2005-10-181-3/+3
|
* MFB51: Fixed bug #34899 (Fixed sqlite extension compile failure).Ilia Alshanetsky2005-10-181-1/+1
|
* Fixed bug #34884 (Possible crash in ext/sqlite when sqlite.assoc_case isIlia Alshanetsky2005-10-171-5/+5
| | | | | being used).
* - Silence unnecessary outputfoobar2005-10-161-1/+1
|
* MFB: Build PDO and SQLite as sharedEdin Kadribasic2005-09-241-1/+1
|
* - MFBMarcus Boerger2005-09-161-1/+1
|
* Allow retrieval of query parse errors from SQLite.Ilia Alshanetsky2005-09-081-19/+46
| | | | | # Patch by Nuno Lopes
* Upgraded sqlite2 lib to 2.8.16Ilia Alshanetsky2005-09-0717-189/+270
|
* Unicode support cleanupDmitry Stogov2005-08-231-39/+5
|
* zend_is_callable() and zend_make_callable() were changed to return readable ↵Dmitry Stogov2005-08-221-16/+17
| | | | function name as zval (instead of string).
* Unicode supportDmitry Stogov2005-08-1640-33/+1114
|
* ZTS fixes.Sebastian Bergmann2005-08-122-3/+3
|
* Unicode support.Andrei Zmievski2005-08-111-1/+1
|
* - Bumber up yearfoobar2005-08-033-3/+3
|
* adopt generic PDO test suiteWez Furlong2005-07-0730-1661/+12
|
* Use the new dependency systemfoobar2005-06-171-3/+3
|