summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #51670 getColumnMeta causes segfault when re-executing query after ↵Pierrick Charron2010-04-271-0/+24
| | | | calling nextRowset
* Fixed bug #50728 (All PDOExceptions hardcode 'code' property to 0)Ilia Alshanetsky2010-01-121-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-035-5/+5
|
* Fixed bug #50323 (Allow use of ; in values via ;; in PDO DSN even in the ↵Pierrick Charron2009-12-061-0/+61
| | | | middle of a string).
* Fixed bug #45120 (PDOStatement->execute() returns true then false for same ↵Pierrick Charron2009-12-031-0/+48
| | | | statement).
* Revert attempt at supporting both autoconf 2.13 andRasmus Lerdorf2009-11-291-5/+5
| | | | | | | | | | | modern versions in the same build chain. There are simply too many broken things in 2.13 to make it work. Cache handling is broken as well which is why I need to revert the pdo_inc_path cache fix as well. trunk is now 2.60+ only and I'll work on cleaning out all the legacy cruft from there.
* Someone strap down Jani and give him a sedative please.Rasmus Lerdorf2009-11-251-5/+5
| | | | | | This makes our toolchain work with the latest versions of autoconf and avoids a lot of end-user grief.
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-315-5/+5
|
* Fixed bug #46964 (Fixed pdo_mysql build with older version of MySQL).Ilia Alshanetsky2008-12-301-2/+2
|
* - MFH: Fixed bug #44327 (PDORow::queryString property & numeric offsets / Crash)Felipe Pena2008-11-031-0/+64
|
* - MFH: Fixed bug #46292 (PDO::setFetchMode() shouldn't requires the 2nd arg ↵Felipe Pena2008-10-141-0/+80
| | | | when using FETCH_CLASSTYPE)
* - Fixed testFelipe Pena2008-10-101-4/+4
|
* MFH:Felipe Pena2008-10-101-0/+162
| | | | | | | - Fixed bug #44251 (Question mark and an escaped singel quote lead to an exception) - Fixed bug #41125 (PDO mysql + quote() + prepare() can result in seg fault) Patch by: tsteiner at nerdclub dot net
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-315-5/+5
|
* MFH: Fix some lib vs $PHP_LIBDIR issuesJani Taskinen2007-07-311-3/+3
|
* MFH: Fix some configure --help textsfoobar2007-07-031-1/+1
|
* Fixed bug #41698 (float parameters truncated to integer in preparedIlia Alshanetsky2007-06-261-0/+37
| | | | | statements).
* Fix INFILE LOCAL option handling with MySQL - now not allowed when open_basedirStanislav Malyshev2007-06-181-1/+5
| | | | | or safe_mode is active
* fix testsAntony Dovgal2007-05-181-1/+2
|
* implement FR #41416 (getColumnMeta() should also return table name)Antony Dovgal2007-05-171-0/+1
|
* fix test namesAntony Dovgal2007-05-074-4/+4
|
* win32 test fixesAntony Dovgal2007-04-181-1/+2
|
* Fixed bug #40935 (pdo_mysql does not raise an exception on emptyIlia Alshanetsky2007-04-151-0/+1
| | | | | fetchAll()).
* Fixed bug #40822 (pdo_mysql does not return rowCount() on select).Ilia Alshanetsky2007-04-081-1/+1
|
* fix small typoAntony Dovgal2007-03-071-2/+26
| | | | | add --with-zlib-dir option (and simple automagic zlib detection)
* MFH: Bump year.Sebastian Bergmann2007-01-015-5/+5
|
* Fix skipifHannes Magnusson2006-12-128-9/+2
|
* Fixed bug #39759 (Can't use stored procedures fetching multiple resultIlia Alshanetsky2006-12-083-11/+9
| | | | | sets in pdo_mysql).
* Added test for previous bugIlia Alshanetsky2006-12-041-0/+0
|
* Default to buffered queries (much faster)Ilia Alshanetsky2006-12-031-13/+3
| | | | | Default to prepared statement emulation to avoid hitting MySQL bugs
* Fixed bug #39527 (Failure to retrieve results when multiple unbuffered,Ilia Alshanetsky2006-12-021-13/+23
| | | | | prepared statements are used in pdo_mysql).
* MFH: fix #38996 (PDO_MYSQL doesn't check connections for liveness)Antony Dovgal2006-10-021-1/+29
|
* fix #38451 (PDO_MYSQL doesn't compile on Solaris)Antony Dovgal2006-08-141-1/+2
|
* Fixed bug #37445 (Fixed crash in pdo_mysql resulting from premature objectIlia Alshanetsky2006-07-312-1/+22
| | | | | destruction).
* Fixed tests from being always skipped.Ilia Alshanetsky2006-07-317-3/+10
|
* MFHHartmut Holzgraefe2006-07-101-0/+35
|
* - Fix bug #37630: MySQL extensions should link against thread safe client ↵Michael Wallner2006-06-011-4/+10
| | | | libs if built with ZTS
* - Fixed bug #37363 (PDO_MYSQL does not build if no other mysql extension isMichael Wallner2006-06-011-6/+5
| | | | | enabled)
* Remove pecl includes (Steph), except pdo_odbc which will remain brokeEdin Kadribasic2006-05-111-1/+0
|
* set min pdo dep to 1.0.3, which will be the new pecl releaseWez Furlong2006-05-021-1/+1
|
* prep for pecl releaseWez Furlong2006-05-021-1/+9
|
* tweak for better compatibility when building as SCE.Wez Furlong2006-05-021-2/+3
| | | | | (library order is important)
* avoid unterminated loop when closing the statement.Wez Furlong2006-04-221-10/+15
|
* Fixed Bug #36602: persistent connections don't work with MySQL 5.0.3+.Wez Furlong2006-04-091-5/+32
| | | | | | | | | | | Fixed PECL Bug #6262; correctly fallback to emulated statements when the server version is too old. Also include code to default to using emulated prepared statements, as these can take advantage of the query cache. Since it's a bit late in the release process to spring this on the masses, the default has not been changed. The code is included so that it doesn't get lost.
* This completes the fix for PECL #5827; we need to gobble up result sets in theWez Furlong2006-04-091-0/+10
| | | | | stmt dtor too.
* fix for PECL Bug #5827.Wez Furlong2006-04-091-0/+10
| | | | | | We're responsible for gobbling up supplemental result sets in closeCursor() (which is what PDO does for us if we didn't implement our own closer routine).
* Added myself to PDO and PDO_MySQL creditsIlia Alshanetsky2006-03-231-2/+3
| | | | | | | Added Wez to PDO_MySQL credits Added Tony to Q&A team credits Regenerated the credits file
* - Fixed fetching of string value bigger than 128bytes when no optionsPierre Joye2006-03-231-1/+2
| | | | | are used
* Allow PDO_MYSQL_ATTR_DIRECT_QUERY to be set via constructorIlia Alshanetsky2006-03-171-2/+12
| | | | | | Allow getAttribute() to fetch MySQL specific attributes. Eliminate unnecessary auto-commit call on connect.
* MFH:Ilia Alshanetsky2006-03-053-1/+12
| | | | | | | | Fixed bug #36572 (Added PDO::MYSQL_ATTR_DIRECT_QUERY constant that show be set when executing internal queries such as "show master status" via MySQL). Added missing constant for MAX_BUFFER_SIZE.