diff options
author | Marcus Boerger <helly@php.net> | 2005-10-02 20:07:11 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-10-02 20:07:11 +0000 |
commit | ca9dd7d82674dc802f9a4c6a6e4600627b3590ce (patch) | |
tree | 479302652fe4835dc1fb975f5d15ffd1a3fde21d /ext/pdo/php_pdo_driver.h | |
parent | 0ea0e1615f8892c3f024418c69b2398bd949b619 (diff) | |
download | php-git-ca9dd7d82674dc802f9a4c6a6e4600627b3590ce.tar.gz |
- Add PDO::setAttribute(PDO::ATTR_STATEMENT_CLASS)
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
-rwxr-xr-x | ext/pdo/php_pdo_driver.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h index f1f2910cd3..15efc314c8 100755 --- a/ext/pdo/php_pdo_driver.h +++ b/ext/pdo/php_pdo_driver.h @@ -475,6 +475,10 @@ struct _pdo_dbh_t { HashTable *cls_methods[PDO_DBH_DRIVER_METHOD_KIND__MAX]; pdo_driver_t *driver; + + zend_class_entry *def_stmt_ce; + + zval *def_stmt_ctor_args; }; /* describes a column */ |