summaryrefslogtreecommitdiff
path: root/ext/oci8/php_oci8.h
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2001-04-13 14:43:39 +0000
committerThies C. Arntzen <thies@php.net>2001-04-13 14:43:39 +0000
commitb9216bcc1bac4857b852767c243a226ebdd8bc96 (patch)
treef3ae0e6de30a2fce5dd86871a2e4f763e0503ba1 /ext/oci8/php_oci8.h
parente9731903d1f78e4562c60bed0d8efd1914b740ae (diff)
downloadphp-git-b9216bcc1bac4857b852767c243a226ebdd8bc96.tar.gz
@ - OCI8 now supports binding of collections
@ (Patch by Andy Sautins <asautins@veripost.net>)
Diffstat (limited to 'ext/oci8/php_oci8.h')
-rw-r--r--ext/oci8/php_oci8.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h
index 72be7f095a..2dc3b14889 100644
--- a/ext/oci8/php_oci8.h
+++ b/ext/oci8/php_oci8.h
@@ -82,6 +82,22 @@ typedef struct {
} oci_descriptor;
typedef struct {
+ int id;
+ int open;
+ oci_connection *conn;
+ oci_session *session;
+ OCISvcCtx *pServiceContext;
+ OCIType *tdo;
+ OCITypeCode coll_typecode;
+ OCIRef *elem_ref;
+ OCIType *element_type;
+ OCITypeCode element_typecode;
+ OCIColl *coll;
+ sword error;
+ OCIError *pError;
+} oci_collection;
+
+typedef struct {
zval *zval;
text *name;
ub4 name_len;