diff options
author | Wez Furlong <wez@php.net> | 2004-09-23 20:43:11 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-09-23 20:43:11 +0000 |
commit | 72040f7f2a4c38db6eca1a6a1dc9e40e70934fbe (patch) | |
tree | fb2cbdbcdfb332450352025a7caa0ed0210e48a5 /ext/pdo_oci | |
parent | b42c14f07edfa6eba0c113cacb42ad2ba7c65b7c (diff) | |
download | php-git-72040f7f2a4c38db6eca1a6a1dc9e40e70934fbe.tar.gz |
more method table adjustments.
mysql driver needs work with the error message stuff.
Other drivers need a bit more auditing...
Diffstat (limited to 'ext/pdo_oci')
-rwxr-xr-x | ext/pdo_oci/oci_driver.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/pdo_oci/oci_driver.c b/ext/pdo_oci/oci_driver.c index 0793a32e7a..353ccf3ed2 100755 --- a/ext/pdo_oci/oci_driver.c +++ b/ext/pdo_oci/oci_driver.c @@ -346,6 +346,8 @@ static struct pdo_dbh_methods oci_methods = { oci_handle_set_attribute, NULL, pdo_oci_fetch_error_func, + NULL, /* get_attr */ + NULL /* check_liveness */ }; static int pdo_oci_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_DC) /* {{{ */ |