summaryrefslogtreecommitdiff
path: root/ext/pdo/php_pdo_int.h
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-09-23 20:07:02 +0000
committerWez Furlong <wez@php.net>2004-09-23 20:07:02 +0000
commit7937f0a2295c7daa89d23b80f221e17cf6ab01af (patch)
treec1eeacb431133d64960cbc048dbdb68aac1eb09d /ext/pdo/php_pdo_int.h
parent2e49a2d960d98ebc272698e98e3a2d185887cc06 (diff)
downloadphp-git-7937f0a2295c7daa89d23b80f221e17cf6ab01af.tar.gz
Implement persistent connections
$dbh->exec --> $dbh->query
Diffstat (limited to 'ext/pdo/php_pdo_int.h')
-rwxr-xr-xext/pdo/php_pdo_int.h2
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[];