diff options
author | Thies C. Arntzen <thies@php.net> | 1999-07-05 09:33:47 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 1999-07-05 09:33:47 +0000 |
commit | 0e3f5a69f7f1b2c106c604f08b30675828612d9c (patch) | |
tree | 17c06d4498af825ec75560f90fc03db6d2027c49 | |
parent | 8788f30c129100be3efda3902f0268a6c63cdf0b (diff) | |
download | php-git-0e3f5a69f7f1b2c106c604f08b30675828612d9c.tar.gz |
ups
-rw-r--r-- | ext/oci8/oci8.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index a5afbf1211..df52b40ab2 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -1032,18 +1032,18 @@ oci8_parse(oci8_connection *connection, char *query, int len, HashTable *list) } } -#if 1 /* testing */ +#if 0 /* testing */ { - ub4 prefetch = 512*1024; + ub4 prefetch = 10; statement->error = oci8_error(statement->pError, - "OCIAttrSet OCI_ATTR_PREFETCH_MEMORY", + "OCIAttrSet OCI_ATTR_PREFETCH_ROWS", OCIAttrSet(statement->pStmt, OCI_HTYPE_STMT, &prefetch, 0, - OCI_ATTR_PREFETCH_MEMORY, + OCI_ATTR_PREFETCH_ROWS, statement->pError)); } #endif |