summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed stupid bug in PHP_INSTALL_HEADERS() macro: "foo bar" != foo barfoobar2005-07-072-9/+9
| | | | | - ext/date/lib/timelib_config.h is also installed now
* do not set error_code to HY000 when there was NO errorAntony Dovgal2005-07-071-36/+37
| | | | | reset both handle & statement error codes to 0
* free parameter when requested to do soAntony Dovgal2005-07-071-0/+7
|
* 1st set of fixes to make tests work with MySQLIlia Alshanetsky2005-07-077-1/+32
| | | | | # Additional changes pending
* Make prepared statements obey buffering flag in MySQL.Ilia Alshanetsky2005-07-071-1/+9
|
* Fixed SIGSEGV on decoding <any> elementsDmitry Stogov2005-07-071-1/+4
|
* populate the new dbh->driver field.Wez Furlong2005-07-072-0/+5
| | | | | Implement PDO_ATTR_DRIVER_NAME.
* Fixed memory leakIlia Alshanetsky2005-07-071-0/+3
|
* add an attribute for returning the driver nameWez Furlong2005-07-071-1/+4
|
* Fixed bug #33512 (Add missing support for isset()/unset() overloading to ↵Dmitry Stogov2005-07-072-0/+8
| | | | complement the property get/set methods). Now empty($obj[...]) works proper but in addition it may call offsetGet() method.
* Fixed bug #33512 (Add missing support for isset()/unset() overloading to ↵Dmitry Stogov2005-07-0710-26/+158
| | | | complement the property get/set methods)
* Fixed memory leak.Ilia Alshanetsky2005-07-071-1/+7
|
* zend_stream_getc uses fread internally. NetWare LibC fread reads 4(Which I ↵Anantha Kesari H Y2005-07-071-0/+9
| | | | | | | believe EOT) for EOF(^D) character. This happens when fread is asked to read one and only character as is the case with cl interactive mode. -- Kamesh
* remove old test filesWez Furlong2005-07-0727-1130/+0
|
* using new testsWez Furlong2005-07-0729-1746/+0
|
* use new testsWez Furlong2005-07-0721-1161/+27
|
* Stop on the 1st skip.Ilia Alshanetsky2005-07-0727-55/+55
|
* adopt new testsWez Furlong2005-07-071-0/+23
|
* fix #33605 (substr_compare() crashes with negative offset & length)Antony Dovgal2005-07-072-0/+10
|
* Fixed bug #28072 (static array with some constant keys will be incorrectly ↵Dmitry Stogov2005-07-075-4/+158
| | | | ordered).
* skip if we can't connect (include reason in skip output)Wez Furlong2005-07-0727-26/+127
|
* Return an empty array rather then FALSE in fetchAll() on no results.Ilia Alshanetsky2005-07-071-3/+7
|
* Fixed memory leak, after SQLITE_DONE sqlite3_data_count() always returns 0.Ilia Alshanetsky2005-07-071-1/+1
|
* adopt new testsWez Furlong2005-07-0728-1637/+27
|
* DB2 wants us to use the proper ODBC 3 function for closing a cursor.Wez Furlong2005-07-071-4/+4
|
* Need to state NOT NULL here, as DB2 won't allow the UNIQUE constraint ↵Wez Furlong2005-07-073-3/+3
| | | | without it.
* make column names lower caseWez Furlong2005-07-071-0/+1
|
* adopt common testsWez Furlong2005-07-0725-1446/+26
|
* sort redirected testsWez Furlong2005-07-071-0/+1
|
* more paranoia about the attribute param here tooWez Furlong2005-07-071-1/+3
|
* extra paranoia about the attribute paramWez Furlong2005-07-071-2/+2
|
* Hmm, these ldflags went AWOL.Wez Furlong2005-07-071-2/+2
|
* Use PQexecParams() when available, use original case in all other instances.Ilia Alshanetsky2005-07-072-3/+14
|
* If asked to populate a set of cflags for a header check, only populate theWez Furlong2005-07-071-2/+7
| | | | | | | | | | flags and don't fill in an entry into config.w32.h, UNLESS explicitly told what to do. This prevents leakage of things like HAVE_SQLCLI1_H from one pecl into another (or the core) and confusing the build (as has happened with ibm_db2 and pdo_odbc).
* adopt generic PDO test suiteWez Furlong2005-07-0730-1661/+12
|
* Fix 2 bugs:Wez Furlong2005-07-071-2/+3
| | | | | | - summary is only displayed if 2 or more tests were detected - error out of a bogus test name is passed in
* Fix handling of parameter binding.Wez Furlong2005-07-075-47/+130
| | | | | | | | | | We need to guess at parameter sizing in some cases (eg: MS Access) as the SQLDescribeParam() API is an optional feature. Tidy up error handling. Add workaround for a shutdown bug that I see with MS ODBC implementation. (working to determine the precise cause of this). PDO core test suite now passes all tests.
* Fix bug in bindColumn() for drivers that implement native prepared statementsWez Furlong2005-07-071-1/+1
| | | | | and that use the PDO rewriter to handle non-native parameter syntax.
* pedantic WSWez Furlong2005-07-071-5/+5
|
* It's not portable to expect any consistency between drivers in the return valueWez Furlong2005-07-071-2/+1
| | | | | of an exec() when running DDL; revise test.
* Fixed memory leaksDmitry Stogov2005-07-072-10/+12
|
* Allow NULL namespaceURI for getAttributeNodeNSRob Richards2005-07-071-1/+1
|
* reorder. Also: Documentation belongs elsewhere :)foobar2005-07-071-4/+1
|
* Reverting the DEFAULT_SLASH to / as it breaks the FreeBSD derived function ↵Anantha Kesari H Y2005-07-071-1/+1
| | | | | | | of NetWare LibC like glob. -- Kamesh
* gwtcwd of NetWare LibC gives a cwd with a volume information.Anantha Kesari H Y2005-07-071-0/+17
| | | | | | | | So using getcwdpath which gives with volume information. getcwdpath gives with directory seperator as \ which is against our DEFAULT_SLASH of /. So finding and replacing \ with / -- Kamesh
* COPY_WHEN_ABSOLUTE is not needed for NetWare.Anantha Kesari H Y2005-07-071-2/+0
| | | | | -- Kamesh
* Fixed support for shared extensions on AIXDmitry Stogov2005-07-074-0/+14
|
* ChangeLog update2005-07-071-0/+14
|
* Missing closing folding markerRasmus Lerdorf2005-07-071-0/+1
|
* Leave it up to the user to decide if to escape the sequence name or not.Ilia Alshanetsky2005-07-071-5/+0
|