summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli.c
Commit message (Collapse)AuthorAgeFilesLines
...
* MFH:Andrey Hristov2008-09-151-1/+1
| | | | | Add float conversions too. Float users should understand how float works!!!
* Fixed uninitialised dataDmitry Stogov2008-07-251-0/+1
|
* Fix for bug#45179 --with-mysql-sock fails to compile & workAndrey Hristov2008-07-211-0/+4
| | | | | | | Now --with-mysql-sock controls all mysql extensions. If provided it will be the default value as it was set in php.ini . php.ini will override it for ext/mysql and ext/mysqli but not for pdo_mysql
* Sync with bzrAndrey Hristov2008-07-151-0/+6
|
* Fix remaining valgrind problems with pconn and zval cacheAndrey Hristov2008-06-241-8/+22
| | | | | HEAD merge will follow tomorrow.
* Fix double-free, introduced latelyAndrey Hristov2008-06-241-0/+3
|
* Make mysqli compilable in a 5_2 environment. Some want to use mysqlnd+mysqliAndrey Hristov2008-05-061-1/+4
| | | | | | with 5_2. This won't hurt 5_2 in any way. Won't be MFB-ed because HEAD is completely different.
* Fix the buildAndrey Hristov2008-03-181-2/+0
|
* Fixed a bunch of bugs reported inAndrey Hristov2008-03-181-43/+140
| | | | | | | | | Bug #44352 mysqli_connect_error() false negative for host errors From now on the mysqli object doesn't have that magic properties, like error, which were readable but not visible through isset(), property_exists() and var_dump(). All other ext/mysqli classes were fixed too. Now it will be easier to debug mysqli based applications.
* Update mysqlnd, ext/mysql and ext/mysqli - now possible to compile with ↵Andrey Hristov2008-03-101-26/+26
| | | | | | | | different configurations one or the another extension to use libmysql or mysqlnd mixed in one binary
* Fix typoJohannes Schlüter2008-03-101-0/+2
|
* Bug fixed in 5.0.46Andrey Hristov2008-03-081-2/+2
|
* Fix a problem with $mysqi->connect() not working with default values.Andrey Hristov2008-03-081-4/+1
| | | | | Fix a leak, bug#39457
* Fixed a possible crashIlia Alshanetsky2008-02-181-1/+3
|
* Fix windows build - VC doesn't like nested macrosAndrey Hristov2008-02-121-5/+4
|
* MFH: - Fix build with TSRM and mysqlndJohannes Schlüter2008-02-121-0/+2
|
* MFHAntony Dovgal2008-02-121-1/+0
|
* Fix typoAndrey Hristov2008-02-121-1/+1
|
* cvs syncAndrey Hristov2008-02-111-0/+19
|
* Pconnect working with mysqli_real_connect(). To less failing tests.Andrey Hristov2008-02-061-2/+2
|
* More optimizations - less MM callsAndrey Hristov2008-01-281-12/+21
| | | | | | | | | | Clearly separated fetching (physical reading) from decoding phases (data interpretation). Threaded fetching added but disabled as needs more work for Windows. For Linux needs some touches to add pthreads if this is enabled, probably with a compile-time switch. The code reorganisation makes it easy to add also async API, similar to cURL's one.
* - MFH: Remove more replication stuffJohannes Schlüter2008-01-031-7/+0
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fix crash with pconnectAndrey Hristov2007-11-091-32/+21
|
* MFH: use correct dtro and variable for the callbackAntony Dovgal2007-10-171-1/+1
|
* Sync mysqlnd. Should still compile with 5_2 for those who want to use theAndrey Hristov2007-10-161-0/+8
| | | | | | current stable branch. mysqli from 5_3 patched for mysqlnd should be also compilable with 5_2.
* avoid double free and use zval_dtor() where neccessaryAntony Dovgal2007-10-161-2/+1
|
* MFH: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-4/+4
|
* Import mysqlndAndrey Hristov2007-10-051-80/+276
| | | | | Patch ext/mysql and ext/mysqli to support mysqlnd
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-1/+1
|
* Fix stupid error, which happens only on Windows. And we thought this hasAndrey Hristov2007-09-121-1/+1
| | | | | | | been fixed. Now my_thread_end() should be called and there should be no warnings in the error logs of exiting thread, which hasn't deinited, and leaks.
* Fixed bug #41350 (my_thread_global_end() error during request shutdown on ↵Scott MacVicar2007-06-251-0/+22
| | | | Windows).
* - MFH Optional dependency for SPL must be specified in headerMarcus Boerger2007-03-201-0/+13
|
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-1/+1
|
* use error message sizeStanislav Malyshev2007-02-161-2/+2
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFH: fix leak in php_local_infile_init() handlerAntony Dovgal2006-07-271-1/+5
|
* fix TSRM buildAntony Dovgal2006-07-121-1/+1
|
* MFH: fix mysqli_*_free_storage() funcs to conform with their prototypesAntony Dovgal2006-07-101-10/+15
|
* Another fix for #38019Dmitry Stogov2006-07-101-32/+72
|
* Fixed bug #38019 (segfault extending mysqli class)Dmitry Stogov2006-07-101-6/+16
|
* MFH: fix bug #38003(in classes inherited from mysqli it's possible to call ↵Antony Dovgal2006-07-051-4/+5
| | | | private constructors from invalid context)
* Added automatic module globals managementDmitry Stogov2006-06-151-4/+9
|
* - Fixed bug #36949 (invalid internal mysqli objects dtor)Michael Wallner2006-05-291-17/+5
|
* Don't allocate 2 chunks of memory when one can fit. Reduces memoryAndrey Hristov2006-05-101-4/+9
| | | | | | fragmentation. There is one more place that fragments memory but it will complicate the ongoing Unicode upgrade of mysqli so leaving it away for now.
* - Update after api changesMarcus Boerger2006-05-101-4/+4
|
* moved zend_class_entry variables to mysqli.cGeorg Richter2006-05-081-0/+7
|
* Added additional information for compiled header files.Georg Richter2006-04-021-1/+2
|
* fix #36922 (missing MYSQLI_REPORT_STRICT constant in userspace)Antony Dovgal2006-03-301-0/+1
|
* fix typoAntony Dovgal2006-03-291-1/+1
|