diff options
author | Wez Furlong <wez@php.net> | 2004-05-21 13:26:58 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-05-21 13:26:58 +0000 |
commit | bf48daa8d595026dd8b4d0ff4030c4073ede9306 (patch) | |
tree | 0586cba18bc3432a2a0f11f127d644e00e5332b0 /ext/pdo/php_pdo_int.h | |
parent | 126531a44b240b15b1aedbe7b61869da5db5e75a (diff) | |
download | php-git-bf48daa8d595026dd8b4d0ff4030c4073ede9306.tar.gz |
Version 1 of PDO_FETCH_LAZY
Diffstat (limited to 'ext/pdo/php_pdo_int.h')
-rwxr-xr-x | ext/pdo/php_pdo_int.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/pdo/php_pdo_int.h b/ext/pdo/php_pdo_int.h index 2c3b73de31..882ee904e1 100755 --- a/ext/pdo/php_pdo_int.h +++ b/ext/pdo/php_pdo_int.h @@ -34,6 +34,13 @@ extern zend_class_entry *pdo_dbstmt_ce; void pdo_dbstmt_free_storage(zend_object *object TSRMLS_DC); extern zend_object_handlers pdo_dbstmt_object_handlers; +extern zend_object_value pdo_row_new(zend_class_entry *ce TSRMLS_DC); +extern function_entry pdo_row_functions[]; +extern zend_class_entry *pdo_row_ce; +void pdo_row_free_storage(zend_object *object TSRMLS_DC); +extern zend_object_handlers pdo_row_object_handlers; + + extern pdo_driver_t *pdo_find_driver(const char *name, int namelen); extern void pdo_handle_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt TSRMLS_DC); |