summaryrefslogtreecommitdiff
path: root/ext/mysqlnd
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'pull-request/341'Stanislav Malyshev2013-06-102-3/+3
| | | | | * pull-request/341: (23 commits) typofixes
* Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2013-04-271-0/+1
|\
| * Fix memory realted to #64726Xinchen Hui2013-04-271-0/+1
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Andrey Hristov2013-04-191-1/+1
|\ \ | |/
| * lower the limit, should fit in a byteAndrey Hristov2013-04-191-1/+1
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Andrey Hristov2013-03-131-1/+1
|\ \ | |/ | | | | | | Conflicts: NEWS
| * fix for bug #63530 mysqlnd_stmt::bind_one_parameter uses wrong alloc for ↵Andrey Hristov2013-03-131-1/+1
| | | | | | | | stmt->param_bind
* | Fix #60840 (undefined symbol: mysqlnd_debug_std_no_trace_funcs)Johannes Schlüter2013-02-212-2/+2
| |
* | check the validity of the parameterAndrey Hristov2013-02-041-1/+8
| |
* | add new charset, from MySQL 5.6Andrey Hristov2013-02-011-8/+11
| |
* | backport handling of expired passwords in mysqlnd to 5.4Andrey Hristov2013-01-092-2/+14
| |
* | fix compilation error after mergeAndrey Hristov2013-01-091-1/+1
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Andrey Hristov2013-01-091-0/+2
|\ \ | |/
| * Use during connect the flags set with set_client_option()Andrey Hristov2013-01-091-0/+2
| |
* | bump yearXinchen Hui2013-01-0610-10/+10
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2013-01-0627-27/+27
|\ \ | |/
| * bump yearXinchen Hui2013-01-0627-27/+27
| |
* | be cautious about the result of strrchrAndrey Hristov2012-12-181-14/+84
| |
* | Fixed mysqlnd compilation in debug mode on windowsAnatoliy Belsky2012-12-131-0/+2
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Andrey Hristov2012-10-311-1/+1
|\ \ | |/
| * read 1 instead of 2 bytes. The next 2 bytes are 2 and thus not a problemAndrey Hristov2012-10-311-1/+1
| |
* | Fixed bug #62594 (segfault in mysqlnd_res_meta::set_mode)Xinchen Hui2012-07-181-1/+3
| |
* | Merge branch 'PHP-5.4' of ssh://git.php.net/php-src into PHP-5.4andrey2012-07-091-2/+2
|\ \
| * | Fixed the common misspelling of the word occurred (occured -> occurred)Marc Easen2012-06-301-2/+2
| | |
* | | fix valgrind warningandrey2012-07-091-1/+1
|/ /
* | mergeandrey2012-06-291-1/+1
| |
* | Merge branch 'PHP-5.3' into PHP-5.4andrey2012-06-291-0/+7
|\ \ | |/
| * fix Bug #62273 Segmentation Fault in Mysqli/Mysqlndandrey2012-06-291-0/+7
| |
* | Merge branch 'PHP-5.3' into PHP-5.4andrey2012-06-291-19/+56
|\ \ | |/
| * new charsetsandrey2012-06-291-19/+56
| |
* | Merge branch 'PHP-5.3' into PHP-5.4andrey2012-05-161-4/+2
|\ \ | |/ | | | | | | | | | | Conflicts: ext/mysqlnd/mysqlnd_ps.c merge fix for bug#62046
| * Fix for bug#62046andrey2012-05-161-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | Bug#62046 mysqli@mysqlnd can't iterate over stored sets after call to mysqli_stmt_reset(). Stmt's state was changed to STMT_PREPARED and leads the driver to think that the stmt was just prepared. Because result set exist also for only prepared but not executed sets, the check for stmt->result isn't any good. There is a result set, because as response for COM_PREPARE the server sends metadata and metadata is part of a result set. After COM_EXECUTE the server sends metadata again, which could be different and in this case more correct.
* | Fix #61704 (Crash apache, phpinfo() threading issue)Johannes Schlüter2012-05-082-10/+33
| |
* | Fix folding marksJohannes Schlüter2012-05-081-4/+4
| |
* | Merge branch 'PHP-5.3' into PHP-5.4andrey2012-05-021-2/+2
|\ \ | |/
| * Fix for bug#61411andrey2012-05-021-2/+2
| | | | | | | | | | | | Bug #61411 PDO Segfaults with PERSISTENT == TRUE && EMULATE_PREPARES == FALSE Wrong allocation, that doesn't follow the scheme of using stmt->persistent was the root cause of the problem and the crash at free.
* | Fix foldingJohannes Schlüter2012-04-221-1/+1
| |
* | Merge branch 'PHP-5.3' into PHP-5.4David Soria Parra2012-03-201-1/+1
|\ \ | |/ | | | | | | | | | | | | | | * PHP-5.3: Replace $Revision$ with $Id$ in keyword expansion enable files Enable $Id$ expansion for files with the $Revision$ keyword Conflicts: ext/mysqlnd/mysqlnd.h
| * Replace $Revision$ with $Id$ in keyword expansion enable filesDavid Soria Parra2012-03-201-1/+1
| |
| * assertAndrey Hristov2012-02-021-1/+5
| |
| * Fix configuration message typo and alignment (5.4 merge approved by Stas)Christopher Jones2012-01-121-2/+2
| |
| * - Year++Felipe Pena2012-01-0127-27/+27
| |
| * use the method in all builds. Thus it can be used for detectionAndrey Hristov2011-11-221-7/+0
| | | | | | | | | | of state transitioning in every case
| * move change_user closer to connectAndrey Hristov2011-10-181-143/+138
| |
| * this should be decided by configureAndrey Hristov2011-10-141-1/+0
| |
| * MYSQLND_NET refactored not to use any direct reference to MYSQLND (the ↵Andrey Hristov2011-10-101-0/+1
| | | | | | | | | | | | | | connection) QC will need an ifdef-layer to compile with this
| * - Fix foldingJohannes Schlüter2011-09-251-1/+1
| |
| * - Fix bug #55609 (mysqlnd cannot be built shared)Johannes Schlüter2011-09-062-3/+11
| | | | | | | | | | | | | | # This adds an option --enable-mysqlnd to explicitly built mysqlnd, like any # other extension it can be used with =shared to build mysqlnd shared; # mysqlnd will implicitly enabled when requested from another extension
| * missing from previous commit for #55582Andrey Hristov2011-09-051-3/+2
| |
| * - Fixed bad xor in signed types due to integer promotion.Gustavo André dos Santos Lopes2011-09-051-5/+5
| | | | | | | | | | - Replaced undefined signed overflow with char -> unsigned char conversion.