summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_libmysql.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|/
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Add support for begin_transaction in libmysql mode.Andrey Hristov2013-02-071-0/+12
| | | | Add support for flags and name for commit/rollback in libmysql mode
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Fix problems with the unbuffered set detection, for libmysql, which resultedAndrey Hristov2011-09-061-2/+2
| | | | | in always true. Thanks Stas.
* Fix for Bug #55582 mysqli_num_rows() returns always 0 for unbuffered, when ↵Andrey Hristov2011-09-051-0/+1
| | | | mysqlnd is used
* Change things to allow passing of the password lengthAndrey Hristov2011-01-141-1/+1
| | | | | | | to mysqlnd. This is needed as a password might include a \0 and thus we need to be binary safe.
* - Year++Felipe Pena2011-01-011-1/+1
|
* Sorry for the commit but compiler warnings are annoying and so are white ↵Ulf Wendel2010-10-041-1/+1
| | | | | | | | | | | | | | spaces at the end of a line, if one uses an editor which removes them on save and diff's get blown up by white space changes... Changes: - remove end of line white space - fix compiler warning "ext/mysqli/mysqli_priv.h:156:27: warning: no newline at end of file" - fix compiler warning "ext/mysqli/mysqli_fe.h:135:25: warning: no newline at end of file" - fix compiler warning "ext/mysqli/mysqli.c:896:11: warning: extra tokens at end of #ifdef directive"
* Add iterator to mysqli_result. Works both for :Andrey Hristov2010-05-181-12/+12
| | | | | | - USE_RESULT, can be iterated only once, kind of forward iterator - STORE_RESULT, can be iterated multiple times
* decouple the methods in MYSQLND_STMT from the data,Andrey Hristov2010-03-161-0/+1
| | | | | | | | 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-5/+83
| | | | | | | | 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/+2
| | | | that have timed out or are unusable for any other reason - bug #49761
* Fixing problems when calling connect (again and again) on a valid connection ↵Ulf Wendel2009-10-151-3/+3
| | | | handle. Most of the patch comes from Andrey.
* Import mysqlndAndrey Hristov2007-10-051-0/+36
Patch ext/mysql and ext/mysqli to support mysqlnd