diff options
author | Wez Furlong <wez@php.net> | 2004-09-23 20:07:02 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-09-23 20:07:02 +0000 |
commit | 7937f0a2295c7daa89d23b80f221e17cf6ab01af (patch) | |
tree | c1eeacb431133d64960cbc048dbdb68aac1eb09d /ext/pdo/php_pdo_int.h | |
parent | 2e49a2d960d98ebc272698e98e3a2d185887cc06 (diff) | |
download | php-git-7937f0a2295c7daa89d23b80f221e17cf6ab01af.tar.gz |
Implement persistent connections
$dbh->exec --> $dbh->query
Diffstat (limited to 'ext/pdo/php_pdo_int.h')
-rwxr-xr-x | ext/pdo/php_pdo_int.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/pdo/php_pdo_int.h b/ext/pdo/php_pdo_int.h index 882ee904e1..8d2be68450 100755 --- a/ext/pdo/php_pdo_int.h +++ b/ext/pdo/php_pdo_int.h @@ -23,10 +23,12 @@ /* Stuff private to the PDO extension and not for consumption by PDO drivers * */ extern zend_class_entry *pdo_exception_ce; +int php_pdo_list_entry(void); extern zend_object_value pdo_dbh_new(zend_class_entry *ce TSRMLS_DC); extern function_entry pdo_dbh_functions[]; extern zend_class_entry *pdo_dbh_ce; +extern ZEND_RSRC_DTOR_FUNC(php_pdo_pdbh_dtor); extern zend_object_value pdo_dbstmt_new(zend_class_entry *ce TSRMLS_DC); extern function_entry pdo_dbstmt_functions[]; |