Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | - WS | Pierre Joye | 2011-07-22 | 1 | -2/+2 | |
| | | ||||||
| * | - remove magic quotes support, functions are kept (see the NEWS entry for ↵ | Pierre Joye | 2011-07-22 | 1 | -0/+4 | |
| | | | | | | | | the details) for BC reasons but do not allow to set enable MQ | |||||
* | | Remove support for local infile handler in mysqli from 5.5 | andrey | 2012-05-03 | 1 | -212/+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 | |
| | | ||||||
* | | Move from directly referencing an aggregated structure to using a | Andrey Hristov | 2011-10-25 | 1 | -0/+1 | |
| | | | | | | | | | | | | pointer to a structure. The structure is still aggregated but we add a level of indirection for possible plugins to overwrite the storage | |||||
* | | api_ext to reverse_api | Andrey Hristov | 2011-10-19 | 1 | -6/+6 | |
| | | ||||||
* | | - Use the proper variable here. | Johannes Schlüter | 2011-09-21 | 1 | -1/+1 | |
| | | ||||||
* | | use DBUG_ON flag for checking debug | Stanislav Malyshev | 2011-09-06 | 1 | -3/+3 | |
| | | | | | | | | | | # Some libmysql builds don't define DBUG_OFF and non-debug builds are more frequent | |||||
* | | Fix #ifdef for mixed builds (ext/mysql using myslqnd, mysqli using libmysql) | Johannes Schlüter | 2011-09-05 | 1 | -1/+1 | |
| | | ||||||
* | | - Fix TSRM build | Johannes Schlüter | 2011-09-01 | 1 | -1/+1 | |
| | | ||||||
* | | - Register extensions using mysqlnd (mysql, myslqi, pdo_mysql) with mysqlnd | Johannes Schlüter | 2011-08-31 | 1 | -0/+29 | |
| | | ||||||
* | | - Added ZEND_MOD_END macro to use in the end of zend_module_dep[] | Felipe Pena | 2011-08-06 | 1 | -1/+1 | |
| | | ||||||
* | | compile out both parts of the code that are currently unused - fixes a ↵ | Andrey Hristov | 2011-08-02 | 1 | -2/+2 | |
| | | | | | | | | compilation warning | |||||
* | | - WS | Pierre Joye | 2011-07-22 | 1 | -2/+2 | |
| | | ||||||
* | | - remove magic quotes support, functions are kept (see the NEWS entry for ↵ | Pierre Joye | 2011-07-22 | 1 | -0/+4 | |
|/ | | | | the details) for BC reasons but do not allow to set enable MQ | |||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 | |
| | ||||||
* | and export the new constant | Andrey Hristov | 2010-12-02 | 1 | -0/+3 | |
| | ||||||
* | fix shadowing of parameters | Andrey Hristov | 2010-10-06 | 1 | -3/+3 | |
| | ||||||
* | Fixed compiler warnings in mysqli | Kalle Sommer Nielsen | 2010-10-05 | 1 | -2/+2 | |
| | | | | | | | | | | - mysqli.c: Fix unused variables, they are only used in non-mysqlnd mode - mysqli_api.c (PHP_5_3 only): Fix constness, add_property_string expects a char *, not a const char * - mysqli_prop.c: Cast to long, as its below the LONG_MAX and therefore safe - mysqli_result_iterator.c: Cast to ulong as the iterator member expects that rather than a my_longlong # In trunk only warnings regarding the zend_property_info # structure is present and PHP_5_3 is warning free now | |||||
* | Trying to fix compiler warnings (on Windows). | Ulf Wendel | 2010-10-04 | 1 | -1/+1 | |
| | ||||||
* | Sorry for the commit but compiler warnings are annoying and so are white ↵ | Ulf Wendel | 2010-10-04 | 1 | -25/+25 | |
| | | | | | | | | | | | | | | 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" | |||||
* | Plug a leak in mysqli when in the same script | Andrey Hristov | 2010-09-30 | 1 | -1/+2 | |
| | | | | | | | a pconn is reused. Call end_psession earlier - so will mysqlnd and the plugins free data earlier. | |||||
* | Fixed bug #45921 (Can't initialize character set hebrew) | Andrey Hristov | 2010-09-27 | 1 | -0/+1 | |
| | | | | | sorry for committing it separated | |||||
* | Adding MYSQLI_OPT_SSL_VERIFY_SERVER_CERT for use with mysqli_options(). | Ulf Wendel | 2010-08-30 | 1 | -0/+3 | |
| | ||||||
* | Fix for bug #52654 mysqli doesn't install headers with structures it uses | Andrey Hristov | 2010-08-20 | 1 | -41/+43 | |
| | ||||||
* | Changed mysqli_report() to be per-request specific rather than per-process ↵ | Kalle Sommer Nielsen | 2010-08-13 | 1 | -0/+1 | |
| | | | | specific (Fixes #52390) | |||||
* | Add checks to check the underlying pointer in the resource. | Andrey Hristov | 2010-05-26 | 1 | -3/+3 | |
| | | | | | | | | It can happen that the underlying pointer is freed (like in the case of connection reconnect), and then it cannot be allocated anymore, which means that NULL will be used consequently by the functions that fetch the resource and the crash is immediate. | |||||
* | Added caches to eliminate repeatable run-time bindings of functions, ↵ | Dmitry Stogov | 2010-05-24 | 1 | -3/+1 | |
| | | | | classes, constants, methods and properties | |||||
* | Add iterator to mysqli_result. Works both for : | Andrey Hristov | 2010-05-18 | 1 | -48/+61 | |
| | | | | | | - USE_RESULT, can be iterated only once, kind of forward iterator - STORE_RESULT, can be iterated multiple times | |||||
* | Better fix for #51605 | Andrey Hristov | 2010-05-13 | 1 | -1/+2 | |
| | ||||||
* | Changed the structure of op_array.opcodes. The constant values are moved ↵ | Dmitry Stogov | 2010-04-20 | 1 | -9/+9 | |
| | | | | from opcode operands into a separate literal table | |||||
* | revert 293939 Fixed bug #50636 (MySQLi_Result sets values before calling | Johannes Schlüter | 2010-02-11 | 1 | -2/+1 | |
| | | | | | constructor) | |||||
* | Fix build of mysqli when libmysql is used, mysqlnd_portability.h | Andrey Hristov | 2010-01-14 | 1 | -1/+0 | |
| | | | | | | | | might not be available for some weird reasons. Added the macros that we need, in that case Code by Jess Portnoy | |||||
* | Fixed bug #50636 (MySQLi_Result sets values before calling constructor) | Pierrick Charron | 2010-01-03 | 1 | -1/+2 | |
| | ||||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 | |
| | ||||||
* | Remove stub code which never actually was used for anything. | Andrey Hristov | 2009-12-09 | 1 | -8/+0 | |
| | | | | | Things like this can be built on top of the core. | |||||
* | Remove the zval caching from mysqlnd. It was disabled versions ago | Andrey Hristov | 2009-12-09 | 1 | -27/+0 | |
| | | | | | | due to problems on windows, which were not debugged. Better have code that is disabled not in the core. | |||||
* | Remove disabled code - threaded fetching. This can be implemented | Andrey Hristov | 2009-12-09 | 1 | -8/+0 | |
| | | | | | | on a upper level and by offloading it we reduce the complexity of the core. | |||||
* | Fixing problems when calling connect (again and again) on a valid connection ↵ | Ulf Wendel | 2009-10-15 | 1 | -16/+1 | |
| | | | | handle. Most of the patch comes from Andrey. | |||||
* | Fixed unused var | Ilia Alshanetsky | 2009-09-23 | 1 | -1/+0 | |
| | ||||||
* | MFH:Fix handling of BIT fields for non-PS. We need | Andrey Hristov | 2009-09-22 | 1 | -6/+32 | |
| | | | | | | macros from mysqlnd to be able to convert a bit stream to a number. | |||||
* | Fix for bug#46614 Extended MySQLi class gives incorrect empty() result | Andrey Hristov | 2009-08-27 | 1 | -3/+5 | |
| | ||||||
* | MFH: export mysql_refresh | Johannes Schlüter | 2009-01-22 | 1 | -0/+12 | |
| | | | | | | | | | [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 #45940 MySQLI OO does not populate connect_error property on failed | Johannes Schlüter | 2009-01-12 | 1 | -8/+0 | |
| | | | | | connect | |||||
* | MFH: Proper ctor usage (Fix #46044) | Johannes Schlüter | 2009-01-07 | 1 | -36/+0 | |
| | ||||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #46887 (Invalid calls to php_error_docref()) | Ilia Alshanetsky | 2008-12-18 | 1 | -1/+1 | |
| | | | | | # Patch by oeriksson at mandriva dot com and crrodriguez at opensuse dot org | |||||
* | Fixed bug #46409 (__invoke method called outside of object context when ↵ | Dmitry Stogov | 2008-11-27 | 1 | -2/+2 | |
| | | | | using array_map) | |||||
* | MFH: | Andrey Hristov | 2008-11-18 | 1 | -0/+3 | |
| | | | | | | Asynchronous queries for mysqli, when mysqlnd is enabled. Includes 4 tests for mysqli_poll | |||||
* | - Declarations MUST BE done in the beginning of a context | Pierre Joye | 2008-10-03 | 1 | -1/+1 | |
| |