Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Asynchronous queries for mysqli, when mysqlnd is enabled. | Andrey Hristov | 2008-11-18 | 1 | -0/+213 | |
| | | | | | Includes 4 tests for mysqli_poll | |||||
* | Get rid of many defines (which simplifies the code a lot), | Andrey Hristov | 2008-11-06 | 1 | -13/+13 | |
| | | | | | as well as uint->unsigned int | |||||
* | 64bit fixes: | Andrey Hristov | 2008-10-31 | 1 | -3/+3 | |
| | | | | | | | - 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 | 1 | -21/+27 | |
| | | | | | executed) | |||||
* | Handle failed connections right | Johannes Schlüter | 2008-10-01 | 1 | -4/+6 | |
| | ||||||
* | Forgot to merge these changes - Float conversion | Andrey Hristov | 2008-09-15 | 1 | -2/+2 | |
| | ||||||
* | constify strings | Johannes Schlüter | 2008-08-19 | 1 | -3/+3 | |
| | ||||||
* | Fix empty error message when connecting to a bad server | Johannes Schlüter | 2008-08-19 | 1 | -3/+3 | |
| | ||||||
* | Sync with bzr | Andrey Hristov | 2008-07-15 | 1 | -11/+7 | |
| | ||||||
* | Fix possible bug with persistent connections | Andrey Hristov | 2008-06-24 | 1 | -4/+16 | |
| | ||||||
* | Update mysqlnd - new ini variable | Andrey Hristov | 2008-05-07 | 1 | -2/+2 | |
| | ||||||
* | Update ext/mysql's and ext/mysqli's tests | Andrey Hristov | 2008-04-24 | 1 | -7/+10 | |
| | | | | | | Add mysqli_stmt_more_result()/mysqli_stmt_next_result(), but only in mysqlnd builds as libmysql doesn't support this feature. | |||||
* | Update ext/mysql, ext/mysqli and ext/mysqlnd from development tree | Andrey Hristov | 2008-04-16 | 1 | -11/+4 | |
| | ||||||
* | - Don't modify the variables which are passed for parameter binding. | Andrey Hristov | 2008-03-20 | 1 | -7/+8 | |
| | | | | | | | | | 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. | |||||
* | Update mysqlnd - fix bg_store | Andrey Hristov | 2008-02-14 | 1 | -2/+3 | |
| | ||||||
* | cvs sync | Andrey Hristov | 2008-02-11 | 1 | -0/+2 | |
| | ||||||
* | MFB: Simplify unique string generation and plug a leak. | Andrey Hristov | 2008-02-04 | 1 | -11/+16 | |
| | ||||||
* | Fix the build, add a missing file | Andrey Hristov | 2008-01-29 | 1 | -58/+1 | |
| | ||||||
* | Moved initialization into a separate function | Andrey Hristov | 2008-01-29 | 1 | -9/+2 | |
| | ||||||
* | Moving extension specific code to php_mysqlnd.c as the old rule is. | Andrey Hristov | 2008-01-28 | 1 | -221/+0 | |
| | ||||||
* | MFB: | Andrey Hristov | 2008-01-28 | 1 | -145/+6 | |
| | | | | | | | some config.w32 fixes moved mysqlnd's block allocator to a separate file and also now it's part of the connection, no MT problems. | |||||
* | MFB: More optimizations - less MM calls | Andrey Hristov | 2008-01-28 | 1 | -21/+347 | |
| | | | | | | | | | | 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 version | Andrey Hristov | 2008-01-23 | 1 | -13/+13 | |
| | ||||||
* | strncpy->strlcpy | Andrey Hristov | 2008-01-08 | 1 | -2/+2 | |
| | ||||||
* | - Fix problems with double definitions | Andrey Hristov | 2008-01-02 | 1 | -4/+4 | |
| | | | | | | | | - 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 ---------------------------------------------------------------------- | |||||
* | Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 | |
| | ||||||
* | Fix segfault in debug build | Andrey Hristov | 2007-11-08 | 1 | -4/+4 | |
| | ||||||
* | MFB: Fix compile failure on windows | Andrey Hristov | 2007-10-23 | 1 | -1/+1 | |
| | ||||||
* | Update mysqlnd in HEAD | Andrey Hristov | 2007-10-02 | 1 | -157/+513 | |
| | | | | | Updated ext/mysql and ext/mysqli in HEAD | |||||
* | Improved memory usage by movig constants to read only memory. (Dmitry, Pierre) | Dmitry Stogov | 2007-09-27 | 1 | -1/+1 | |
| | ||||||
* | Fix crashes with pconn in ext/mysql | Andrey Hristov | 2007-08-06 | 1 | -4/+12 | |
| | ||||||
* | Update CVS | Andrey Hristov | 2007-08-03 | 1 | -30/+63 | |
| | | | | | | | | | - Fix BIT problem for BIT values represented with 5 bytes. Typo. - Make it possible with an ini variable to switch off/on statistics collection. - Compile-out debug checking of uneaten data from the line, when the build is release. According to callgrind this was eating some percentage. | |||||
* | - Moved mysqnd to it's own directory: It is sort of an extension itself. | Jani Taskinen | 2007-07-25 | 1 | -0/+1681 | |
(Similar to what ext/libxml is..) |