Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update copyright headers to 2017 | Sammy Kaye Powers | 2017-01-04 | 1 | -1/+1 |
| | |||||
* | Merge branch 'PHP-5.6' into PHP-7.0 | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
|\ | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016) | ||||
| * | Happy new year (Update copyright to 2016) | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
| | | |||||
| * | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | Fix #32490: constructor of mysqli has wrong name | Christoph M. Becker | 2015-09-01 | 1 | -1/+1 |
| | | | | | | | | | | As of PHP 7 old style constructor names are deprecated, so we rename mysqli::mysqli() to mysqli::__construct(). | ||||
* | | Cleanup (replce hack by a clean implementation) | Dmitry Stogov | 2015-07-01 | 1 | -1/+1 |
| | | |||||
* | | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
|/ | |||||
* | New result fetching mode for mysqlnd, which should use less memory but | Andrey Hristov | 2014-04-10 | 1 | -2/+13 |
| | | | | | | | | implies more memory copy. The old method is still available and can be used. It stays as default. Choosing the method is through a flag to mysqli_query()/mysqli_real_query() New mode can be forced with an INI setting, for all extensions that support this mode (ext/mysql and mysqli, because PDO due to it's architecture can't support it) The setting is mysqlnd.fetch_data_copy=[0|1] | ||||
* | Add new INI for rollbacking connections put back into the pconn pool | Andrey Hristov | 2014-01-29 | 1 | -0/+4 |
| | | | | | as well a function get the the statistics in easier way than ob_start() and parsing phpinfo(). | ||||
* | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 |
| | |||||
* | Implement variadic function syntax | Nikita Popov | 2013-09-26 | 1 | -5/+10 |
| | | | | As per RFC: https://wiki.php.net/rfc/variadics | ||||
* | mysqli_savepoint()/mysqli_release_savepoint() | Andrey Hristov | 2013-02-08 | 1 | -0/+22 |
| | |||||
* | Add support for begin_transaction in libmysql mode. | Andrey Hristov | 2013-02-07 | 1 | -4/+38 |
| | | | | Add support for flags and name for commit/rollback in libmysql mode | ||||
* | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -1/+1 |
| | |||||
* | Remove support for local infile handler in mysqli from 5.5 | andrey | 2012-05-03 | 1 | -18/+0 |
| | | | | | | | | | | | | | | This removes the following functions from the API: mysqli_set_local_infile_default() mysqli_set_local_infile_handler() Using these functions is known to be lead to stability problems in mysqli. It was only enabled when compiling against libmysql. mysqlnd doesn't have this support for local infile. However, with mysqlnd it can be emulated by using stream handlers like in: $c->query("LOAD DATA LOCAL INFILE "http://example.com/import.csv" INTO ...") All available protocols, as well as user implemented ones can be added. | ||||
* | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | |||||
* | Add mysqli_error_list() that returns an array with errors. Typically only | Andrey Hristov | 2011-08-04 | 1 | -0/+2 |
| | | | | | | | | one and just one for libmysql. mysqlnd can return generate more than one error during its work and with mysqli_error() only the last error is being reported. In the array returned by mysqli_error_list() / $mysqli->error_list, all errors will be found. The list is reset when the next command is executed | ||||
* | - Make usage of new PHP_FE_END macro | Felipe Pena | 2011-07-25 | 1 | -1/+1 |
| | |||||
* | - Keep the old arginfo for now | Johannes Schlüter | 2011-05-18 | 1 | -1/+1 |
| | | | | | | # This change we would E_RECOVERABLE instead of E_WARNING # and needs some more review, as well fixing ~80 tests | ||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | |||||
* | Next one... ext/mysqli/mysqli_fe.c", line [many]: warning: syntax error: ↵ | Ulf Wendel | 2010-10-04 | 1 | -6/+6 |
| | | | | empty declaration | ||||
* | Sorry for the commit but compiler warnings are annoying and so are white ↵ | Ulf Wendel | 2010-10-04 | 1 | -6/+6 |
| | | | | | | | | | | | | | | 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" | ||||
* | fix the build. two mysqli functions were missing after | Andrey Hristov | 2010-08-25 | 1 | -0/+1 |
| | | | | | recent commit - set_charset and get_charset | ||||
* | Fix for bug #52654 mysqli doesn't install headers with structures it uses | Andrey Hristov | 2010-08-20 | 1 | -0/+1 |
| | |||||
* | Fix for bug #52433 Call to undefined method mysqli::poll() | Andrey Hristov | 2010-08-13 | 1 | -0/+3 |
| | |||||
* | Cleanup in trunk. Remove some functions, noted in | Andrey Hristov | 2010-07-07 | 1 | -12/+4 |
| | | | | | | UPGRADING. sed-ed the tests to change the usage to the real function name. | ||||
* | Arginfo for mysqli | Andrey Hristov | 2010-07-07 | 1 | -180/+455 |
| | |||||
* | Remove a function that has no usage. The zval cache was disabled/removed | Andrey Hristov | 2010-05-26 | 1 | -1/+0 |
| | | | | | in 5.3.0-RC3. | ||||
* | Fix for bug#49234 method not found ssl_set | Andrey Hristov | 2010-04-15 | 1 | -4/+0 |
| | | | | | Patch was tested and compiles on Windows. (Thanks Kalle) | ||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | MFH: export mysql_refresh | Johannes Schlüter | 2009-01-22 | 1 | -0/+3 |
| | | | | | | | | | [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: Fix #47050 mysqli_poll() modifies improper variables | Johannes Schlüter | 2009-01-12 | 1 | -1/+8 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | MFH: | Andrey Hristov | 2008-11-18 | 1 | -3/+13 |
| | | | | | | Asynchronous queries for mysqli, when mysqlnd is enabled. Includes 4 tests for mysqli_poll | ||||
* | - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro | Felipe Pena | 2008-11-17 | 1 | -3/+0 |
| | |||||
* | - Revert ZEND_BEGIN_ARG_INFO change | Felipe Pena | 2008-11-02 | 1 | -0/+3 |
| | |||||
* | - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro | Felipe Pena | 2008-10-24 | 1 | -12/+9 |
| | |||||
* | Update ext/mysql's and ext/mysqli's tests | Andrey Hristov | 2008-04-24 | 1 | -0/+8 |
| | | | | | | Add mysqli_stmt_more_result()/mysqli_stmt_next_result(), but only in mysqlnd builds as libmysql doesn't support this feature. | ||||
* | Update mysqlnd, ext/mysql and ext/mysqli - now possible to compile with ↵ | Andrey Hristov | 2008-03-10 | 1 | -10/+10 |
| | | | | | | | | different configurations one or the another extension to use libmysql or mysqlnd mixed in one binary | ||||
* | Fix a problem with $mysqi->connect() not working with default values. | Andrey Hristov | 2008-03-08 | 1 | -1/+1 |
| | | | | | Fix a leak, bug#39457 | ||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | Remove RPL functions. They were always experimental and lead to crashes. | Andrey Hristov | 2007-12-28 | 1 | -23/+0 |
| | | | | | | The underlying functions will be removed from libmysql as of MySQL 6.0, so it's right time to remove them. | ||||
* | Import mysqlnd | Andrey Hristov | 2007-10-05 | 1 | -19/+52 |
| | | | | | Patch ext/mysql and ext/mysqli to support mysqlnd | ||||
* | Improved memory usage by movig constants to read only memory. (Dmitry, Pierre) | Dmitry Stogov | 2007-09-27 | 1 | -4/+4 |
| | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | bump year and license version | foobar | 2006-01-01 | 1 | -3/+3 |
| | |||||
* | Whitespace fix (don't ask :) | Zeev Suraski | 2005-12-26 | 1 | -16/+9 |
| | |||||
* | MFH: nuke php3 legacy | foobar | 2005-12-06 | 1 | -4/+4 |
| | |||||
* | MFH: fix bug #34902 (mysqli::character_set_name() - undefined method) | Antony Dovgal | 2005-10-18 | 1 | -0/+1 |
| |