@ - OCI8 now supports binding of collections

@   (Patch by Andy Sautins <asautins@veripost.net>)
This commit is contained in:
Thies C. Arntzen 2001-04-13 14:43:39 +00:00
parent e9731903d1
commit b9216bcc1b
2 changed files with 1103 additions and 10 deletions

File diff suppressed because it is too large Load Diff

View File

@ -81,6 +81,22 @@ typedef struct {
ub4 type;
} 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;