Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Asynchronous queries for mysqli, when mysqlnd is enabled. | Andrey Hristov | 2008-11-18 | 4 | -1/+254 | |
| | | | | | Includes 4 tests for mysqli_poll | |||||
* | More type fixes for Windows | Andrey Hristov | 2008-11-06 | 4 | -141/+150 | |
| | ||||||
* | Rely on win32/php_stdint.h on Windows for stdint types | Andrey Hristov | 2008-11-06 | 2 | -7/+31 | |
| | ||||||
* | More cleanup of config-win.h and missed merge, which actually occured in 5_3 | Andrey Hristov | 2008-11-06 | 2 | -24/+7 | |
| | ||||||
* | Get rid of many defines (which simplifies the code a lot), | Andrey Hristov | 2008-11-06 | 15 | -226/+168 | |
| | | | | | as well as uint->unsigned int | |||||
* | Fix the windows build | Andrey Hristov | 2008-11-03 | 1 | -31/+33 | |
| | ||||||
* | Fix the build | Andrey Hristov | 2008-10-31 | 1 | -1/+1 | |
| | ||||||
* | 64bit fixes: | Andrey Hristov | 2008-10-31 | 11 | -318/+302 | |
| | | | | | | | - fixes to sprintf modifiers, cleaning warnings - use _t types, like uint64_t instead of uint64, thus skipping series of typedefs. | |||||
* | Fix #46285 (lastInsertId() returns "0" when a deferenced PDOStatement is | Johannes Schlüter | 2008-10-27 | 3 | -30/+38 | |
| | | | | | executed) | |||||
* | Fix overusage of memory when the result set is empty. Then no memory will be | Andrey Hristov | 2008-10-27 | 1 | -17/+26 | |
| | | | | | | | | allocated compared to before. Also grow (realloc) the rset with 10% instead of 33% - more reallocs but better memory usage. Of course later theres is a realloc to shrink the rset t ofree it from unused rows but its better to to eat too much at once. | |||||
* | Fix a name | Andrey Hristov | 2008-10-27 | 1 | -1/+1 | |
| | ||||||
* | Don't dereference NULL-pointer | Johannes Schlüter | 2008-10-19 | 1 | -1/+2 | |
| | ||||||
* | Improve order in MINFO output | Johannes Schlüter | 2008-10-01 | 1 | -7/+8 | |
| | ||||||
* | Handle failed connections right | Johannes Schlüter | 2008-10-01 | 1 | -4/+6 | |
| | ||||||
* | Fix a crash introduced yesterday in mysqlnd, non-zts mode - missing if () for | Andrey Hristov | 2008-09-16 | 2 | -12/+20 | |
| | | | | | | | | STAT_LAST was accessing wrong memory thus overwritting method pointers. Windows doesn't have atoll(), which is C99, C89 has only atoi() + atol(). Win has _atoi64, so use it. | |||||
* | Forgot to merge these changes - Float conversion | Andrey Hristov | 2008-09-15 | 2 | -3/+3 | |
| | ||||||
* | Add float conversions too. Float users should understand how float works!!! | Andrey Hristov | 2008-09-15 | 2 | -3/+11 | |
| | ||||||
* | Compile-in a string-to-int conversion for INT columns by default, | Andrey Hristov | 2008-09-15 | 2 | -4/+4 | |
| | | | | | controlled by a ini setting. | |||||
* | - More statistics | Andrey Hristov | 2008-09-12 | 6 | -73/+337 | |
| | | | | | | | - Fixed endless loop - mysqlnd_stmt_next_result() returned FAIL but as it is defined to be 1 (and PASS is 0), checking for mysqlnd_stmt_more_result() was successful although we were expecting a FAIL. | |||||
* | constify strings | Johannes Schlüter | 2008-08-19 | 2 | -5/+6 | |
| | ||||||
* | Fix empty error message when connecting to a bad server | Johannes Schlüter | 2008-08-19 | 1 | -3/+3 | |
| | ||||||
* | - Added TSRMLS_DC to apply_func_args_t and zend_hash_apply_with_arguments. | Felipe Pena | 2008-07-24 | 1 | -12/+7 | |
| | ||||||
* | Fixed bug#44897 - failed to prepare statement | Andrey Hristov | 2008-07-23 | 1 | -11/+14 | |
| | | | | | | After a PS "CALL()" we have at least one result set. If the SP does also some, then we need to clean the wire more fool-proof. | |||||
* | More debugging info | Andrey Hristov | 2008-07-22 | 2 | -6/+39 | |
| | ||||||
* | Sync with bzr | Andrey Hristov | 2008-07-15 | 4 | -53/+43 | |
| | ||||||
* | MFB | Jani Taskinen | 2008-07-14 | 1 | -3/+2 | |
| | ||||||
* | Fix possible bug with persistent connections | Andrey Hristov | 2008-06-24 | 2 | -7/+20 | |
| | ||||||
* | Add missing header | Andrey Hristov | 2008-06-24 | 1 | -0/+2 | |
| | ||||||
* | Even more debug info | Andrey Hristov | 2008-06-24 | 1 | -6/+22 | |
| | ||||||
* | Added more debug info for tracking problems | Andrey Hristov | 2008-06-23 | 1 | -1/+29 | |
| | ||||||
* | MFB | Andrey Hristov | 2008-05-29 | 1 | -2/+1 | |
| | ||||||
* | MFB and steph's pecl fixes into confutils | Elizabeth Marie Smith | 2008-05-14 | 1 | -18/+22 | |
| | ||||||
* | Update mysqlnd - new ini variable | Andrey Hristov | 2008-05-07 | 7 | -18/+23 | |
| | ||||||
* | Update ext/mysql's and ext/mysqli's tests | Andrey Hristov | 2008-04-24 | 10 | -172/+409 | |
| | | | | | | Add mysqli_stmt_more_result()/mysqli_stmt_next_result(), but only in mysqlnd builds as libmysql doesn't support this feature. | |||||
* | - Fix Windows build | Johannes Schlüter | 2008-04-23 | 2 | -2/+2 | |
| | ||||||
* | Update ext/mysql, ext/mysqli and ext/mysqlnd from development tree | Andrey Hristov | 2008-04-16 | 12 | -234/+322 | |
| | ||||||
* | MFB : Fix for Bug #43832 mysqi_get_charset() doesn't expose charset comment | Andrey Hristov | 2008-03-25 | 3 | -140/+139 | |
| | ||||||
* | Small fix and a test case to prove it | Andrey Hristov | 2008-03-20 | 1 | -8/+1 | |
| | ||||||
* | - Don't modify the variables which are passed for parameter binding. | Andrey Hristov | 2008-03-20 | 4 | -22/+79 | |
| | | | | | | | | | We need to clone them, if there will be a transformation (convert_to_xxx) which will change the origin. - Make mysqlnd more compatible to libmysql, in this case if the execute of a statement fails set the state of the statement back to PREPARED - A test case to check the case of a failing statement. | |||||
* | MFB - Bug #44352 mysqli_connect_error() false negative for host errors | Andrey Hristov | 2008-03-18 | 1 | -3/+3 | |
| | ||||||
* | Update mysqlnd, ext/mysql and ext/mysqli - now possible to compile with ↵ | Andrey Hristov | 2008-03-10 | 1 | -1/+0 | |
| | | | | | | | | different configurations one or the another extension to use libmysql or mysqlnd mixed in one binary | |||||
* | fix win32 build | Rob Richards | 2008-02-25 | 1 | -1/+3 | |
| | ||||||
* | Fix memory leak | Andrey Hristov | 2008-02-20 | 3 | -6/+11 | |
| | ||||||
* | Fix a compile warning + test | Andrey Hristov | 2008-02-19 | 1 | -1/+1 | |
| | ||||||
* | Another fix | Andrey Hristov | 2008-02-14 | 3 | -14/+24 | |
| | ||||||
* | Fix memory errors | Andrey Hristov | 2008-02-14 | 2 | -6/+8 | |
| | ||||||
* | Update mysqlnd - fix bg_store | Andrey Hristov | 2008-02-14 | 7 | -26/+101 | |
| | ||||||
* | cvs sync | Andrey Hristov | 2008-02-11 | 6 | -7/+18 | |
| | ||||||
* | new 6.0 flag | Andrey Hristov | 2008-02-11 | 1 | -1/+1 | |
| | ||||||
* | Fix a bug and a test | Andrey Hristov | 2008-02-06 | 1 | -2/+4 | |
| |