Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix [-Wundef] warning in PDO DBLib extension | George Peter Banyard | 2020-05-20 | 1 | -1/+1 |
| | |||||
* | Remove mention of PHP major version in Copyright headers | Gabriel Caruso | 2019-09-25 | 1 | -2/+0 |
| | | | | Closes GH-4732. | ||||
* | Remove year range from copyright notice | Zeev Suraski | 2019-01-30 | 1 | -1/+1 |
| | |||||
* | Remove unused Git attributes ident | Peter Kokot | 2018-07-25 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore. | ||||
* | year++ | Xinchen Hui | 2018-01-02 | 1 | -1/+1 |
| | |||||
* | Turn "pdo_stmt_methods" into constants. | Dmitry Stogov | 2017-12-14 | 1 | -1/+1 |
| | |||||
* | Treat DATETIME2 columns like DATETIME | fandrieu | 2017-11-10 | 1 | -0/+6 |
| | |||||
* | More robust handling of stringified column data | Adam Baratz | 2017-11-10 | 1 | -19/+46 |
| | | | | | | | - Use at least the FreeTDS maximum when converting datetime data - Pass buffer length to dbconvert() - Use dbconvert() return value to set string lengths or handle errors - Move shared code into shared function | ||||
* | Fix #74243: allow locales.conf to drive datetime format | fandrieu | 2017-10-31 | 1 | -27/+52 |
| | | | | Add a driver attribute, PDO::DBLIB_ATTR_DATETIME_CONVERT, to control. | ||||
* | Use size_t instead of int, use more specific format string | Adam Baratz | 2017-10-31 | 1 | -2/+2 |
| | |||||
* | Implemented request #69592: allow 0-column rowsets to be skipped automatically | fandrieu | 2017-10-17 | 1 | -3/+12 |
| | | | | | | | | | | | | | This adds a new attribute PDO::DBLIB_ATTR_SKIP_EMPTY_ROWSETS to enable automatic skipping of empty rowsets. This happens with some SQL commands (like PRINT or SET): a rowset with 0 columns is returned by the driver. With this option enabled, 0 columns rowsets are automatically skipped, mirroring the behavior of the deprecated mssql extension. Credits go to MiRacLe-RPZ for developping and promoting this patch. | ||||
* | Update copyright headers to 2017 | Sammy Kaye Powers | 2017-01-02 | 1 | -1/+1 |
| | |||||
* | Merge branch 'PHP-7.1' | Adam Baratz | 2016-12-07 | 1 | -7/+1 |
|\ | | | | | | | | | | | * PHP-7.1: Remove noop param hook Clean up tabs and whitespace | ||||
| * | Remove noop param hook | Adam Baratz | 2016-12-07 | 1 | -7/+1 |
| | | |||||
* | | Use more accurate types to avoid compiler warnings | Adam Baratz | 2016-10-31 | 1 | -10/+11 |
| | | |||||
* | | Fix comment style | Adam Baratz | 2016-10-31 | 1 | -2/+4 |
| | | |||||
* | | Fix #73396: bigint columns are returned as strings | Adam Baratz | 2016-10-27 | 1 | -4/+13 |
| | | |||||
* | | Remove unneeded macro check. This "hack" is replicated in php_pdo_dblib_int.h. | Adam Baratz | 2016-10-27 | 1 | -4/+0 |
| | | |||||
* | | remove unread var | Adam Baratz | 2016-10-27 | 1 | -2/+1 |
|/ | |||||
* | PHP bug 67130: nextRowset should work with unfetched rows | Peter LeBrun | 2016-09-21 | 1 | -2/+23 |
| | |||||
* | Free error and message strings when cleaning up PDO instances that use pdo_dblib | Adam Baratz | 2016-09-13 | 1 | -16/+0 |
| | |||||
* | Handle SQLDECIMAL/SQLNUMERIC types, which are used by later TDS versions | Adam Baratz | 2016-09-13 | 1 | -7/+10 |
| | |||||
* | pdo_dblib: stringify uniqidentifier field | Alexander Zhuravlev | 2016-08-25 | 1 | -5/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Keep old 5.6 behavior: return Uniqidentifier value as 36-byte hex string (not binary), when PDO::ATTR_STRINGIFY_FETCHES is TRUE pdo_dblib: Stringify uniqidentifier field Keep old 5.6 behavior: return Uniqidentifier value as 36-byte hex string (not binary), when PDO::ATTR_STRINGIFY_FETCHES is TRUE Tests added. pdo_dblib: Stringify uniqidentifier field Keep old 5.6 behavior: return Uniqidentifier value as 36-byte hex string (not binary), when PDO::ATTR_STRINGIFY_FETCHES is TRUE Tests fix. pdo_dblib: Stringify uniqueidentifier field Added separate PDO::DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER attribute instead of PDO::ATTR_STRINGIFY_FETCHES. pdo_dblib: Stringify uniqueidentifier field Added `getAttribute` support for PDO::DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER. Simplify storage of stringify_uniqueidentifier attribute | ||||
* | fix bug #71667 (emulate how mssql extension names "computed" columns) | Adam Baratz | 2016-04-06 | 1 | -5/+15 |
| | |||||
* | return zvals instead of strings, cast or not based on stringify attribute | Adam Baratz | 2016-04-06 | 1 | -66/+164 |
| | |||||
* | Add driver-specific attributes for controlling calls to dbsetlogintime() and ↵ | Adam Baratz | 2016-04-05 | 1 | -0/+20 |
| | | | | dbsettime() | ||||
* | Merge branch 'PHP-5.6' into PHP-7.0 | Remi Collet | 2016-03-16 | 1 | -1/+1 |
|\ | | | | | | | | | * PHP-5.6: fix #ifdef usage | ||||
| * | fix #ifdef usage | Remi Collet | 2016-03-16 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.6' into PHP-7.0 | Anatol Belski | 2016-02-29 | 1 | -0/+19 |
|\ \ | |/ | | | | | | | * PHP-5.6: Fixed #54648 PDO::MSSQL forces format of datetime fields | ||||
| * | Fixed #54648 PDO::MSSQL forces format of datetime fields | Anatol Belski | 2016-02-29 | 1 | -0/+19 |
| | | | | | | | | adopted patch by steven dot lambeth at gmx dot de | ||||
* | | Merge branch 'PHP-5.6' into PHP-7.0 | Anatol Belski | 2016-02-29 | 1 | -22/+0 |
|\ \ | |/ | | | | | | | * PHP-5.6: remove unneeded free parts | ||||
| * | remove unneeded free parts | Anatol Belski | 2016-02-29 | 1 | -22/+0 |
| | | | | | | | | See bug #71667, free_statement already does the job | ||||
* | | Merge branch 'PHP-5.6' into PHP-7.0 | Anatol Belski | 2016-02-29 | 1 | -0/+22 |
|\ \ | |/ | | | | | | | | | | | | | * PHP-5.6: fix leaks and add one more NULL check add NULL check fix C89 compat fix arg type | ||||
| * | fix leaks and add one more NULL check | Anatol Belski | 2016-02-29 | 1 | -3/+17 |
| | | |||||
| * | add NULL check | Anatol Belski | 2016-02-29 | 1 | -2/+4 |
| | | |||||
| * | fix arg type | Anatol Belski | 2016-02-29 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.6' into PHP-7.0 | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
|\ \ | |/ | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016) | ||||
| * | Happy new year (Update copyright to 2016) | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.6' into PHP-7.0 | Anatol Belski | 2015-10-18 | 1 | -4/+14 |
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | * PHP-5.6: C89 compat use spprintf instead (no need to estrdup afterwards). dblib's dbcolname can return null in some cases testcase fot bug #69757 Segmentation fault on pdo_dblib::nextRowset (bug #69757) Conflicts: ext/pdo_dblib/dblib_stmt.c | ||||
| * | C89 compat | Anatol Belski | 2015-10-18 | 1 | -3/+4 |
| | | |||||
| * | use spprintf instead (no need to estrdup afterwards). | MiRacLe.RPZ | 2015-10-18 | 1 | -4/+3 |
| | | |||||
| * | dblib's dbcolname can return null in some cases | MiRacLe.RPZ | 2015-10-18 | 1 | -1/+1 |
| | | |||||
| * | Segmentation fault on pdo_dblib::nextRowset (bug #69757) | MiRacLe.RPZ | 2015-10-18 | 1 | -2/+9 |
| | | |||||
| * | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | Use zend_string to represent pdo_column_data.name and avoid duplication. | Dmitry Stogov | 2015-05-05 | 1 | -4/+5 |
| | | |||||
* | | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | trailing whitespace removal | Stanislav Malyshev | 2015-01-10 | 1 | -40/+40 |
| | | |||||
* | | first shot remove TSRMLS_* things | Anatol Belski | 2014-12-13 | 1 | -13/+13 |
| | | |||||
* | | Fixed bug #64511 - pdo_dblib segfaults or leaks on nextRowset() | Stanley Sufficool | 2014-10-22 | 1 | -12/+6 |
| | | |||||
* | | Fix bug #67134 (PDO_DBLIB Missing null string terminator) | Stanley Sufficool | 2014-10-20 | 1 | -3/+2 |
| | |