summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli.c
Commit message (Collapse)AuthorAgeFilesLines
* revert 293939 Fixed bug #50636 (MySQLi_Result sets values before callingJohannes Schlüter2010-02-111-2/+1
| | | | | constructor)
* Fix build of mysqli when libmysql is used, mysqlnd_portability.hAndrey Hristov2010-01-141-1/+0
| | | | | | | | might not be available for some weird reasons. Added the macros that we need, in that case Code by Jess Portnoy
* Fixed bug #50636 (MySQLi_Result sets values before calling constructor)Pierrick Charron2010-01-031-1/+2
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* Remove stub code which never actually was used for anything.Andrey Hristov2009-12-091-8/+0
| | | | | Things like this can be built on top of the core.
* Remove the zval caching from mysqlnd. It was disabled versions agoAndrey Hristov2009-12-091-27/+0
| | | | | | due to problems on windows, which were not debugged. Better have code that is disabled not in the core.
* Remove disabled code - threaded fetching. This can be implementedAndrey Hristov2009-12-091-8/+0
| | | | | | on a upper level and by offloading it we reduce the complexity of the core.
* Fixing problems when calling connect (again and again) on a valid connection ↵Ulf Wendel2009-10-151-16/+1
| | | | handle. Most of the patch comes from Andrey.
* Fix handling of BIT fields for non-PS. We needAndrey Hristov2009-09-221-7/+34
| | | | | | | macros from mysqlnd to be able to convert a bit stream to a number. BIT is binary data thus the result is a string, and not unicode
* Fix for bug#46614 Extended MySQLi class gives incorrect empty() resultAndrey Hristov2009-08-271-4/+5
|
* - fix TS buildPierre Joye2009-04-061-0/+1
|
* - Removed:Felipe Pena2009-03-271-32/+23
| | | | | | | | - UG(unicode) checks - Changed: - ZEND_STR_TYPE -> IS_UNICODE - convert_to_text -> convert_to_unicode
* - Export mysql_refresh to mysqli (mysqli_refresh(), $mysqli->refresh())Johannes Schlüter2009-01-221-0/+12
|
* - Fix #45940 MySQLI OO does not populate connect_error property on failedJohannes Schlüter2009-01-121-7/+0
| | | | | connect
* Proper ctor usage (Fix #46044)Johannes Schlüter2009-01-071-36/+0
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFB: Fixed bug #46887 (Invalid calls to php_error_docref())Ilia Alshanetsky2008-12-181-1/+1
|
* Fixed bug #46409 (__invoke method called outside of object context when ↵Dmitry Stogov2008-11-271-2/+2
| | | | using array_map)
* Asynchronous queries for mysqli, when mysqlnd is enabled.Andrey Hristov2008-11-181-0/+3
| | | | | Includes 4 tests for mysqli_poll
* - MFB: Declarations MUST BE done in the beginning of a contextPierre Joye2008-10-031-1/+1
|
* Fix the libmysql build. Unintentionally broken by my last commit.Andrey Hristov2008-09-191-1/+1
|
* Fix for bug#46019 MySQLi::init() leaks memoryAndrey Hristov2008-09-191-1/+1
|
* Add float conversions too. Float users should understand how float works!!!Andrey Hristov2008-09-151-1/+1
|
* Fixed uninitialized dataDmitry Stogov2008-07-251-0/+1
|
* MFB :Andrey Hristov2008-07-211-0/+4
| | | | | | | | Fix for bug#45179 --with-mysql-sock fails to compile & work 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-5/+28
|
* MFB : fix the buildAndrey Hristov2008-03-181-2/+0
|
* MFB - Bug #44352 mysqli_connect_error() false negative for host errorsAndrey Hristov2008-03-181-56/+168
|
* Update mysqlnd, ext/mysql and ext/mysqli - now possible to compile with ↵Andrey Hristov2008-03-101-27/+27
| | | | | | | | different configurations one or the another extension to use libmysql or mysqlnd mixed in one binary
* Fix typoJohannes Schlüter2008-03-101-1/+1
|
* - Fix build with older MySQLJohannes Schlüter2008-03-101-0/+2
|
* Bug fixed in MySQL 5.0.46Andrey Hristov2008-03-081-2/+2
|
* MFB:Andrey Hristov2008-03-081-3/+1
| | | | | | - Fixed problem with $mysqli->connect() not connecting with defaults - Fixed leak (#39475)
* Fix Windows build. VC doesn't like nested macros - expansion + #ifAndrey Hristov2008-02-121-5/+4
|
* - Fix build with TSRM and mysqlndJohannes Schlüter2008-02-121-0/+2
|
* nuke unnecessary TSRMLS_FETCH()Antony 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()Andrey Hristov2008-02-061-2/+2
|
* MFB: 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.
* - Remove more replication stuffJohannes Schlüter2008-01-031-7/+0
|
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fix crashes with pconn (merge from 5_3)Andrey Hristov2007-11-091-34/+20
|
* use correct dtor and variable for the callbackAntony Dovgal2007-10-171-1/+1
|
* use zval_dtor() instead of efree() + FREE_ZVAL()Antony Dovgal2007-10-161-2/+1
|
* Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-4/+4
|
* Update mysqlnd in HEADAndrey Hristov2007-10-021-19/+99
| | | | | Updated ext/mysql and ext/mysqli in HEAD
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-1/+1
|
* Import of mysqlnd and ext/mysql + ext/mysqli patched to be built eitherAndrey Hristov2007-07-241-86/+220
| | | | | | | with libmysql or mysqld. Use --with-mysql=mysqlnd --with-mysqli=mysqlnd to build with mysqlnd.
* MFB: Fixed bug #41350 (my_thread_global_end() error during request shutdown ↵Scott MacVicar2007-06-251-0/+22
| | | | on Windows).