diff options
author | Marcus Boerger <helly@php.net> | 2005-02-20 16:12:57 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-02-20 16:12:57 +0000 |
commit | d56ce00b8538f20693453a4cfc49e5901d165ace (patch) | |
tree | 1ad9876f1a6e026f4b0104dddda309ef9fdb0adc /ext/pdo/php_pdo_driver.h | |
parent | 567fd3159df09948f003ccff528c9d88d3bb501d (diff) | |
download | php-git-d56ce00b8538f20693453a4cfc49e5901d165ace.tar.gz |
- Add fetch flag PDO_FETCH_CLASSTYPE
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
-rwxr-xr-x | ext/pdo/php_pdo_driver.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h index c46bff5f90..9e8f0cb9b1 100755 --- a/ext/pdo/php_pdo_driver.h +++ b/ext/pdo/php_pdo_driver.h @@ -84,6 +84,7 @@ enum pdo_fetch_type { #define PDO_FETCH_FLAGS 0xFFFF0000 /* fetchAll() modes or'd to PDO_FETCH_XYZ */ #define PDO_FETCH_GROUP 0x00010000 /* fetch into groups */ #define PDO_FETCH_UNIQUE 0x00030000 /* fetch into groups assuming first col is unique */ +#define PDO_FETCH_CLASSTYPE 0x00040000 /* fetch class gets its class name from 1st column */ /* fetch orientation for scrollable cursors */ enum pdo_fetch_orientation { |