summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_libmysql_compat.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix #80330: Replace language in APIs and source code/docsDarek Slusarczyk2021-01-251-0/+1
| | | | | | | | | Rename MYSQLI_REFRESH_SLAVE to MYSQLI_REFRESH_REPLICA in line with upstream change in MySQL. The old name is retained for backwards-compatibility reasons, and may be deprecated/removed in the future. Closes GH-6632.
* Replace zend_bool uses with boolNikita Popov2021-01-151-1/+1
| | | | | | | We're starting to see a mix between uses of zend_bool and bool. Replace all usages with the standard bool type everywhere. Of course, zend_bool is retained as an alias.
* Fixed bug #70066Nikita Popov2020-12-091-1/+1
| | | | | If we fall back to emulated prepared statements, destroy S->stmt, so the code doesn't get confused about which mode we're in.
* Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
| | | | Closes GH-4732.
* Update and fix remaining year ranges (2019)Peter Kokot2019-02-081-1/+1
| | | | | | This patch follows previous license year ranges updates. With new approach source code files now have simplified headers with license information without year ranges.
* year++Xinchen Hui2018-01-021-1/+1
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* Merge branch 'PHP-7.0'Andrey Hristov2016-03-161-4/+3
|\
| * Fix emails in headers. @mysql.com addresses are no more since many years.Andrey Hristov2016-03-161-4/+3
| |
* | Merge branch 'PHP-7.0'Lior Kaplan2016-01-011-1/+1
|\ \ | |/ | | | | | | | | | | * PHP-7.0: Update header to PHP Version 7 Happy new year (Update copyright to 2016) Happy new year (Update copyright to 2016)
| * 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
| | |
* | | - Remove dead macrom mysql_list_fields()Andrey Hristov2015-11-161-1/+0
| | | | | | | | | | | | - Small optimizations here and there
* | | MNDR:Andrey Hristov2015-11-121-1/+0
| | | | | | | | | | | | - move things out of mysqlnd_priv.h
* | | MNDR:Andrey Hristov2015-11-121-1/+1
|/ / | | | | | | | | | | - rename mysqlnd_init to mysqlnd_connection_init - rename mysqlnd_connect to mysqlnd_connection_connect - created macros for BC
* | cleanup the mod version macros, round 2Anatol Belski2015-03-231-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
|
* Export new callsAndrey Hristov2013-02-071-2/+2
|
* Add support for connect attributes, as of MySQL 5.6Andrey Hristov2013-01-151-1/+2
|
* bump yearXinchen Hui2013-01-061-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* - Fix copyrightsFelipe Pena2010-04-201-2/+2
|
* CS + WS changesAndrey Hristov2010-04-151-9/+9
|
* Fix for bug#49234 method not found ssl_setAndrey Hristov2010-04-151-0/+1
| | | | | Patch was tested and compiles on Windows. (Thanks Kalle)
* Making mysqlnd emit no warnings when fetching pooled persistent connections ↵Ulf Wendel2009-10-151-1/+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: export mysql_refreshJohannes Schlüter2009-01-221-0/+11
| | | | | | | | | [DOC] This makes mysql_refresh() as described in http://dev.mysql.com/doc/refman/6.0/en/mysql-refresh.html available as mysqli_Refresh() and mysqli->refresh() MYSQLI_REFRESH_BACKUP_LOG is only available when linking libmysql 6.0 or mysqlnd
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFB:Andrey Hristov2008-10-311-1/+1
| | | | | | | | 64bit fixes: - fixes to sprintf modifiers, cleaning warnings - use _t types, like uint64_t instead of uint64, thus skipping series of typedefs.
* Update mysqlndAndrey Hristov2008-05-071-4/+0
|
* MFB: Update CVS from the development treeAndrey Hristov2008-04-161-0/+3
|
* More optimizations - less MM callsAndrey Hristov2008-01-281-1/+2
| | | | | | | | | | 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.
* Merge with internal versionAndrey Hristov2008-01-231-2/+2
|
* - Fix problems with double definitionsAndrey Hristov2008-01-021-1/+1
| | | | | | | - Clean up a bit a type mess - 4 types less. No need to have aliases for the same thing (unification is the name). - New macro for Johannes mysqlnd_stmt_ro_result_metadata
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Import mysqlndAndrey Hristov2007-10-051-0/+121
Patch ext/mysql and ext/mysqli to support mysqlnd