summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_5_1_0b3'.php-5.1.0b3SVN Migration2005-07-1448-5560/+0
|
* - Beta 3Andi Gutmans2005-07-144-5/+5
|
* ChangeLog update2005-07-141-0/+30
|
* Add test caseWez Furlong2005-07-141-0/+47
|
* gah!Wez Furlong2005-07-141-1/+1
|
* Thanks 'james' (a visitor to my blog) for reporting this bug.Wez Furlong2005-07-141-0/+17
|
* keep this as a placeholder for debugging weird regressionsWez Furlong2005-07-141-0/+1
|
* Add utility for driver-specific testsWez Furlong2005-07-141-0/+10
|
* it is not an error for a statement to return 0 rows.Wez Furlong2005-07-141-15/+13
| | | | | | | | Andrey: please run the test suite before each commit! This broke beta 3 and was clearly visible as a result of running the tests. Running further tests now.
* - Fixed cacheing bug in PHP_SOCKADDR_SA_LEN macrofoobar2005-07-143-25/+21
| | | | | | - Removed duplicate sa_len check from configure.in - Unified the sockaddr tests into PHP_SOCKADDR_CHECKS macro
* Fix the re_magic test by adding missing #include <sys/types.h>foobar2005-07-141-1/+2
|
* Route ftp:// wrapper via transports layer.\nFix typo in datastream crypto ↵Sara Golemon2005-07-131-4/+12
| | | | startup
* Fixed bug #33673 (Added detection for partially uploaded files).Ilia Alshanetsky2005-07-132-5/+18
|
* typofixfoobar2005-07-131-2/+2
|
* - Added check whether re_magic exists in struct regex_tfoobar2005-07-131-1/+9
| | | | | # per Andrei's request
* fix typofoobar2005-07-132-2/+2
|
* fixed typosfoobar2005-07-131-2/+2
|
* ChangeLog update2005-07-132-0/+91
|
* - Update Beta 3 dateAndi Gutmans2005-07-121-1/+1
|
* add forgotten ifdefs, fix #33667 (mysqli doesn't compile)Antony Dovgal2005-07-122-0/+6
|
* - Update NewsAndi Gutmans2005-07-121-1/+1
|
* - Back to -devAndi Gutmans2005-07-123-4/+4
|
* - Beta 3Andi Gutmans2005-07-123-4/+4
|
* ok, call pdo_mysql_error() before returning -1Andrey Hristov2005-07-121-3/+2
|
* strictly check the result of mysql_affected_rows()Andrey Hristov2005-07-122-5/+13
|
* Added support for LOCK_EX flag for file_put_contents().Ilia Alshanetsky2005-07-122-0/+6
|
* Fixed double-free in the digest authentication handling.Ilia Alshanetsky2005-07-122-2/+8
| | | | | # Found and Reported by Stefan Esser
* changed version dependency for charset functionsGeorg Richter2005-07-122-0/+6
|
* compile before commit...Wez Furlong2005-07-121-2/+2
|
* Enable unix build for dblib/sybase/freetds.Wez Furlong2005-07-124-3/+68
| | | | | The extension is named pdo_dblib and the driver dblib on unix.
* fix tests that started to fail after the last change in ZEAntony Dovgal2005-07-122-5/+5
| | | | | (noticed by Nuno)
* Avoid estrdup(NULL), modified patch from Zhao ming sen.Wez Furlong2005-07-121-2/+10
|
* removed charset structure. libmysql now provides a functionGeorg Richter2005-07-122-37/+16
| | | | | mysqli_get_character_set_info (Vers. 5.0.10)
* Touch with working re2cfoobar2005-07-121-185/+98
|
* Fixed bug #33156 (cygwin version of setitimer doesn't accept ITIMER_PROF). ↵Dmitry Stogov2005-07-122-0/+9
| | | | (Nuno)
* ChangeLog update2005-07-122-0/+48
|
* touch generated fileWez Furlong2005-07-121-34/+40
|
* remember ? -> :pdox mapping so that binds by position can be mapped to names ↵Wez Furlong2005-07-122-8/+21
| | | | if required.
* fix bug when query was rewritten from ? to :nameWez Furlong2005-07-121-0/+1
|
* improve handling of bound input parameters when no maximal length value is set;Wez Furlong2005-07-122-16/+25
| | | | | | | | | | default to 4000 as the maximal length, which is the biggest size possible without using a LONG type (if you specify anything larger than this, you'll end up with ORA-1461). Don't assume that all parameters were output parameters after execution, as this would clobber the input values when used in a loop.
* expand oracle null handling compatability by offering the ability to convertWez Furlong2005-07-124-8/+26
| | | | | | | | NULLs into empty strings as well as the other way around. It still doesn't help a great deal in the long run, but at least the option is there. Make sure hash tables are nulled out to avoid double freeing them.
* should always bind columns after execute.Wez Furlong2005-07-121-1/+1
| | | | | There're probably more of these to fix.
* Make references misuse emit E_NOTICE rather E_STRICT to be compatible withIlia Alshanetsky2005-07-112-10/+10
| | | | | PHP 4.4.0
* A bit of further tuning.Ilia Alshanetsky2005-07-111-3/+3
|
* fix a segfault with the following script:Andrey Hristov2005-07-111-1/+4
| | | | | | | | | | | | <?php $dbh = new PDO('mysql:dbname=test;host=localhost', "root", "secret"); $what = 1; $stmt = $dbh->prepare('select a, b, c from t123 where a=:what'); $stmt->bindParam(1, $what, PDO_PARAM_INT, 12); var_dump($stmt->execute()); var_dump($stmt->fetchObject()); ?>
* - mysql_affected_rows() already returns an unsigned longAndrey Hristov2005-07-111-8/+9
| | | | | | - optimize a bit the real_escape - handle the situation when libmysql bails out because of lack of memory
* Removing the automake-related output. The build no longer uses automake.Jon Parise2005-07-111-9/+7
| | | | | | | While I'm here, rewrite the PHP_AUTOCONF-related code to more closely match the conventions used elsewhere in this section. The result should be functionally the same as before.
* ChangeLog update2005-07-111-0/+73
|
* Compiler warning fix.Ilia Alshanetsky2005-07-111-0/+2
|
* - Moved ext/dbx and ext/ircg to PECL.foobar2005-07-1041-5489/+3
|