summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_mysqlnd.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix for Bug #55582 mysqli_num_rows() returns always 0 for unbuffered, when ↵Andrey Hristov2011-09-051-0/+1
| | | | mysqlnd is used
* decouple the methods in MYSQLND_STMT from the data,Andrey Hristov2010-03-161-2/+3
| | | | | | | | needed to move to a new structure MYSQLND_STMT. Makes the code cleaner and less error-prone. Also fix PDO/MySQL which directly touch mysqlnd internals instead of using API calls.
* Fix build of mysqli when libmysql is used, mysqlnd_portability.hAndrey Hristov2010-01-141-0/+1
| | | | | | | | might not be available for some weird reasons. Added the macros that we need, in that case Code by Jess Portnoy
* Remove disabled code - threaded fetching. This can be implementedAndrey Hristov2009-12-091-1/+0
| | | | | | on a upper level and by offloading it we reduce the complexity of the core.
* Making mysqlnd emit no warnings when fetching pooled persistent connections ↵Ulf Wendel2009-10-151-0/+1
| | | | that have timed out or are unusable for any other reason - bug #49761
* MFH:Add support for mysql_stmt_store_result() from libmysql 6.0.8+ and 5.4.xAndrey Hristov2009-05-291-0/+2
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH:Andrey Hristov2008-11-181-0/+1
| | | | | | Asynchronous queries for mysqli, when mysqlnd is enabled. Includes 4 tests for mysqli_poll
* More optimizations - less MM callsAndrey Hristov2008-01-281-0/+1
| | | | | | | | | | 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: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Import mysqlndAndrey Hristov2007-10-051-0/+41
Patch ext/mysql and ext/mysqli to support mysqlnd