summaryrefslogtreecommitdiff
path: root/ext/mysqlnd
Commit message (Collapse)AuthorAgeFilesLines
...
* Asynchronous queries for mysqli, when mysqlnd is enabled.Andrey Hristov2008-11-184-1/+254
| | | | | Includes 4 tests for mysqli_poll
* More type fixes for WindowsAndrey Hristov2008-11-064-141/+150
|
* Rely on win32/php_stdint.h on Windows for stdint typesAndrey Hristov2008-11-062-7/+31
|
* More cleanup of config-win.h and missed merge, which actually occured in 5_3Andrey Hristov2008-11-062-24/+7
|
* Get rid of many defines (which simplifies the code a lot),Andrey Hristov2008-11-0615-226/+168
| | | | | as well as uint->unsigned int
* Fix the windows buildAndrey Hristov2008-11-031-31/+33
|
* Fix the buildAndrey Hristov2008-10-311-1/+1
|
* 64bit fixes:Andrey Hristov2008-10-3111-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 isJohannes Schlüter2008-10-273-30/+38
| | | | | executed)
* Fix overusage of memory when the result set is empty. Then no memory will beAndrey Hristov2008-10-271-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 nameAndrey Hristov2008-10-271-1/+1
|
* Don't dereference NULL-pointerJohannes Schlüter2008-10-191-1/+2
|
* Improve order in MINFO outputJohannes Schlüter2008-10-011-7/+8
|
* Handle failed connections rightJohannes Schlüter2008-10-011-4/+6
|
* Fix a crash introduced yesterday in mysqlnd, non-zts mode - missing if () forAndrey Hristov2008-09-162-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 conversionAndrey Hristov2008-09-152-3/+3
|
* Add float conversions too. Float users should understand how float works!!!Andrey Hristov2008-09-152-3/+11
|
* Compile-in a string-to-int conversion for INT columns by default,Andrey Hristov2008-09-152-4/+4
| | | | | controlled by a ini setting.
* - More statisticsAndrey Hristov2008-09-126-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 stringsJohannes Schlüter2008-08-192-5/+6
|
* Fix empty error message when connecting to a bad serverJohannes Schlüter2008-08-191-3/+3
|
* - Added TSRMLS_DC to apply_func_args_t and zend_hash_apply_with_arguments.Felipe Pena2008-07-241-12/+7
|
* Fixed bug#44897 - failed to prepare statementAndrey Hristov2008-07-231-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 infoAndrey Hristov2008-07-222-6/+39
|
* Sync with bzrAndrey Hristov2008-07-154-53/+43
|
* MFBJani Taskinen2008-07-141-3/+2
|
* Fix possible bug with persistent connectionsAndrey Hristov2008-06-242-7/+20
|
* Add missing headerAndrey Hristov2008-06-241-0/+2
|
* Even more debug infoAndrey Hristov2008-06-241-6/+22
|
* Added more debug info for tracking problemsAndrey Hristov2008-06-231-1/+29
|
* MFBAndrey Hristov2008-05-291-2/+1
|
* MFB and steph's pecl fixes into confutilsElizabeth Marie Smith2008-05-141-18/+22
|
* Update mysqlnd - new ini variableAndrey Hristov2008-05-077-18/+23
|
* Update ext/mysql's and ext/mysqli's testsAndrey Hristov2008-04-2410-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 buildJohannes Schlüter2008-04-232-2/+2
|
* Update ext/mysql, ext/mysqli and ext/mysqlnd from development treeAndrey Hristov2008-04-1612-234/+322
|
* MFB : Fix for Bug #43832 mysqi_get_charset() doesn't expose charset commentAndrey Hristov2008-03-253-140/+139
|
* Small fix and a test case to prove itAndrey Hristov2008-03-201-8/+1
|
* - Don't modify the variables which are passed for parameter binding.Andrey Hristov2008-03-204-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 errorsAndrey Hristov2008-03-181-3/+3
|
* Update mysqlnd, ext/mysql and ext/mysqli - now possible to compile with ↵Andrey Hristov2008-03-101-1/+0
| | | | | | | | different configurations one or the another extension to use libmysql or mysqlnd mixed in one binary
* fix win32 buildRob Richards2008-02-251-1/+3
|
* Fix memory leakAndrey Hristov2008-02-203-6/+11
|
* Fix a compile warning + testAndrey Hristov2008-02-191-1/+1
|
* Another fixAndrey Hristov2008-02-143-14/+24
|
* Fix memory errorsAndrey Hristov2008-02-142-6/+8
|
* Update mysqlnd - fix bg_storeAndrey Hristov2008-02-147-26/+101
|
* cvs syncAndrey Hristov2008-02-116-7/+18
|
* new 6.0 flagAndrey Hristov2008-02-111-1/+1
|
* Fix a bug and a testAndrey Hristov2008-02-061-2/+4
|