From 7937f0a2295c7daa89d23b80f221e17cf6ab01af Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 23 Sep 2004 20:07:02 +0000 Subject: Implement persistent connections $dbh->exec --> $dbh->query --- ext/pdo/php_pdo_int.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/pdo/php_pdo_int.h') 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[]; -- cgit v1.2.1