summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_mysqlnd.h
Commit message (Collapse)AuthorAgeFilesLines
* 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
* 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
* Add support for mysql_stmt_store_result() from libmysql 6.0.8+ and 5.4.xAndrey Hristov2009-05-291-0/+2
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Asynchronous queries for mysqli, when mysqlnd is enabled.Andrey Hristov2008-11-181-0/+1
| | | | | Includes 4 tests for mysqli_poll
* MFB: 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.
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Update mysqlnd in HEADAndrey Hristov2007-10-021-2/+2
| | | | | Updated ext/mysql and ext/mysqli in HEAD
* - Moved mysqnd to it's own directory: It is sort of an extension itself.Jani Taskinen2007-07-251-1/+1
| | | | | (Similar to what ext/libxml is..)
* Import of mysqlnd and ext/mysql + ext/mysqli patched to be built eitherAndrey Hristov2007-07-241-0/+41
with libmysql or mysqld. Use --with-mysql=mysqlnd --with-mysqli=mysqlnd to build with mysqlnd.