summaryrefslogtreecommitdiff
path: root/ext/oci8/php_oci8.h
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2000-02-01 14:39:59 +0000
committerThies C. Arntzen <thies@php.net>2000-02-01 14:39:59 +0000
commitc145f856383d272c68bb7f4dc69c3cb26cd32506 (patch)
tree07f20cc241e8bf07097c6d671518045cf354351a /ext/oci8/php_oci8.h
parent11f53347c7e7d14c750a0ffe898f3ad22b205570 (diff)
downloadphp-git-c145f856383d272c68bb7f4dc69c3cb26cd32506.tar.gz
make it work without the zend_hash_pointer*() functions. some work on the shutdown issues (more to follow)
Diffstat (limited to 'ext/oci8/php_oci8.h')
-rw-r--r--ext/oci8/php_oci8.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h
index 29d63f52e9..18bb23ba28 100644
--- a/ext/oci8/php_oci8.h
+++ b/ext/oci8/php_oci8.h
@@ -25,9 +25,6 @@
+----------------------------------------------------------------------+
| Authors: Stig Sæther Bakken <ssb@fast.no> |
| Thies C. Arntzen <thies@digicol.de> |
- | |
- | Initial work sponsored by Thies Arntzen <thies@digicol.de> of |
- | Digital Collections, http://www.digicol.de/ |
+----------------------------------------------------------------------+
*/
@@ -64,13 +61,16 @@ typedef struct {
int open;
char *dbname;
OCIServer *pServer;
+#if 0
OCIFocbkStruct failover;
+#endif
} oci_server;
typedef struct {
int num;
int persistent;
int open;
+ char *hashed_details;
oci_server *server;
OCISession *pSession;
} oci_session;
@@ -148,12 +148,17 @@ typedef struct {
typedef struct {
sword error;
OCIError *pError;
+
+ /*
char *default_username;
char *default_password;
char *default_dbname;
+ */
long debug_mode;
+ int shutdown;
+
/* XXX NYI
long allow_persistent;
long max_persistent;