| Commit message (Expand) | Author | Age | Files | Lines |
* | decouple the methods in MYSQLND_STMT from the data, | Andrey Hristov | 2010-03-16 | 1 | -4/+4 |
* | Pass tsrmls to all functions, which might need it in the future. | Andrey Hristov | 2010-02-03 | 1 | -3/+3 |
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 |
* | Fix compiler warnings in ext/mysql, ext/mysqli and ext/pdo_mysql | Kalle Sommer Nielsen | 2009-05-20 | 1 | -14/+14 |
* | - This is PHP 6 - if this ... ever gets out | Marcus Boerger | 2009-03-10 | 1 | -1/+1 |
* | MFB: Removed unused variable | Ilia Alshanetsky | 2009-01-14 | 1 | -3/+1 |
* | Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
* | - Add mysqlnd support for PDO_mysql, fixes at least bug#41997,#42499, | Johannes Schlüter | 2008-07-21 | 1 | -183/+549 |
* | Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
* | MFB | Ilia Alshanetsky | 2007-05-28 | 1 | -0/+1 |
* | MFB | Antony Dovgal | 2007-04-10 | 1 | -1/+1 |
* | Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
* | MFB: Fixed bug #39759 (Can't use stored procedures fetching multiple result | Ilia Alshanetsky | 2006-12-08 | 1 | -5/+5 |
* | MFB: Fixed bug #39527 (Failure to retrieve results when multiple unbuffered, | Ilia Alshanetsky | 2006-12-02 | 1 | -1/+7 |
* | MFB51: Fixed bug #36345 (PDO/MySQL problem loading BLOB over 1MB). | Ilia Alshanetsky | 2006-02-14 | 1 | -4/+2 |
* | bump year and license version | foobar | 2006-01-01 | 1 | -3/+3 |
* | MF51: | Antony Dovgal | 2005-12-05 | 1 | -0/+11 |
* | fix possible crash in pdo_mysql_stmt_dtor() | Antony Dovgal | 2005-11-30 | 1 | -1/+1 |
* | - free S->stmt | Antony Dovgal | 2005-10-27 | 1 | -1/+9 |
* | Fixed bug #34623 (Crash in pdo_mysql on longtext fields). | Ilia Alshanetsky | 2005-10-19 | 1 | -0/+6 |
* | protect against underflow - refs http://pecl.php.net/bugs/bug.php?id=5193 | George Schlossnagle | 2005-09-01 | 1 | -1/+1 |
* | Fixed bug #34001 (pdo_mysql truncates numberic fields at 4 chars) | Ilia Alshanetsky | 2005-09-01 | 1 | -3/+21 |
* | Fixed memory corruption (wrong order of operations of stored prep. stmt). | Ilia Alshanetsky | 2005-07-20 | 1 | -9/+12 |
* | Proper handling for databases that need to pre-calculate length of large | Ilia Alshanetsky | 2005-07-20 | 1 | -2/+1 |
* | Only set attribute if result set contains some columns. | Ilia Alshanetsky | 2005-07-20 | 1 | -1/+1 |
* | clean up | Ilia Alshanetsky | 2005-07-20 | 1 | -2/+1 |
* | this hack can and does segv; let's remove it. | Wez Furlong | 2005-07-20 | 1 | -14/+1 |
* | gah! | Wez Furlong | 2005-07-14 | 1 | -1/+1 |
* | it is not an error for a statement to return 0 rows. | Wez Furlong | 2005-07-14 | 1 | -15/+13 |
* | strictly check the result of mysql_affected_rows() | Andrey Hristov | 2005-07-12 | 1 | -4/+11 |
* | stmt->column_count is set only if the result has been already bound, don't | Andrey Hristov | 2005-07-10 | 1 | -5/+5 |
* | ok, calculate max_length only in case of a blob (normal, medium, long). | Andrey Hristov | 2005-07-10 | 1 | -1/+19 |
* | if the result set is buffered ask libmysql to compute the lengths, so | Andrey Hristov | 2005-07-10 | 1 | -7/+9 |
* | Get precise lengths from the server, as suggested by Andrey. | Wez Furlong | 2005-07-10 | 1 | -0/+3 |
* | Added safety checks. | Ilia Alshanetsky | 2005-07-09 | 1 | -3/+7 |
* | Make cursor closer work with emulation as well. | Ilia Alshanetsky | 2005-07-09 | 1 | -0/+2 |
* | Added missing header check. | Ilia Alshanetsky | 2005-07-09 | 1 | -0/+3 |
* | Implement cursor_closer for MySQL driver. | Ilia Alshanetsky | 2005-07-09 | 1 | -1/+8 |
* | Fixed memory leak | Ilia Alshanetsky | 2005-07-09 | 1 | -1/+11 |
* | Fix two bugs: | Wez Furlong | 2005-07-09 | 1 | -5/+6 |
* | Make prepared statements obey buffering flag in MySQL. | Ilia Alshanetsky | 2005-07-07 | 1 | -1/+9 |
* | Fixed memory leak. | Ilia Alshanetsky | 2005-07-07 | 1 | -1/+7 |
* | Enable native mysql 4.1.x prepared statement support | Wez Furlong | 2005-07-03 | 1 | -10/+176 |
* | Experimental support for queries returning multiple rowsets under mysql 5.0. | Wez Furlong | 2005-07-02 | 1 | -1/+44 |
* | Added PDO_MYSQL_ATTR_USE_BUFFERED_QUERY parameter for pdo_mysql, to toggle | Ilia Alshanetsky | 2005-06-24 | 1 | -1/+5 |
* | Various compiler warning fixes. | Ilia Alshanetsky | 2005-05-18 | 1 | -1/+0 |
* | removed unused var. | Ilia Alshanetsky | 2005-04-19 | 1 | -1/+0 |
* | No c++ comments in C code | foobar | 2005-04-19 | 1 | -3/+3 |
* | fully distinguish between database and statement level errors | Hartmut Holzgraefe | 2005-02-27 | 1 | -0/+4 |
* | use fetch_fields only once and remember the result | Hartmut Holzgraefe | 2005-02-27 | 1 | -21/+20 |