Oracle® Call Interface Programmer's Guide 10g Release 1 (10.1) Part Number B10779-01 |
|
|
View PDF |
This section describes the Type Interface functions.
Adds an attribute to an object type that was constructed earlier with typecode OCI_TYPECODE_OBJECT.
sword OCITypeAddAttr ( OCISvcCtx *svchp, OCIError *errhp, OCIType *type, CONST text *a_name, ub4 a_length, OCIParam *attr_info );
The OCI service context.
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Obtain diagnostic information by calling OCIErrorGet()
.
The type description that is being constructed.
Optional. The name of the attribute.
Optional. The length of attribute name, in bytes.
Information on the attribute. It is obtained by allocating an OCIParam
parameter handle and setting type information in the OCIParam
using OCIAttrSet()
calls.
Begins the construction process for a transient type. The type will be anonymous (no name).
sword OCITypeBeginCreate ( OCISvcCtx *svchp, OCIError *errhp, OCITypeCode tc, OCIDuration dur, OCIType **type );
The OCI Service Context.
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Obtain diagnostic information by calling OCIErrorGet()
.
The typecode for the type. The typecode could correspond to an object type or a built-in type.
Currently, the permissible values for User Defined Types are:
For Object types, call OCITypeAddAttr()
to add each of the attribute types. For Collection types, call OCITypeSetCollection()
. Subsequently, call OCITypeEndCreate()
to finish the creation process.
The permissible values for built-in type codes are specified in "Typecodes". Additional information on built-in types (precision, scale for numbers, character set information for VARCHAR2
s, and so on) if any, must be set with a subsequent call to OCITypeSetBuiltin()
. Finally, you must use OCITypeEndCreate()
to finish the creation process.
The allocation duration for the type. One of the following:
OCIDurationBegin()
.The OCIType
(Type Descriptor) that is being constructed.
To create a persistent named type, use the SQL statement CREATE
TYPE
. Transient types have no identity. They are pure values.
Finishes construction of a type description. Subsequently, only access will be allowed.
sword OCITypeEndCreate ( OCISvcCtx *svchp, OCIError *errhp, OCIType *type );
The OCI service context.
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Obtain diagnostic information by calling OCIErrorGet()
.
The type description that is being constructed.
Sets built-in type information. This call can be made only if the type has been constructed with a built-in typecode (OCI_TYPECODE_NUMBER, and so on).
sword OCITypeSetBuiltin ( OCISvcCtx *svchp, OCIError *errhp, OCIType *type, OCIParam *builtin_info );
The OCI service context.
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Obtain diagnostic information by calling OCIErrorGet()
.
The type description that is being constructed.
Provides information on the built-in (precision, scale, character set, and so on). It is obtained by allocating an OCIParam
parameter handle and setting type information in the OCIParam
using OCIAttrSet()
calls.
Sets collection type information. This call can be made only if the type has been constructed with a collection typecode.
sword OCITypeSetCollection ( OCISvcCtx *svchp, OCIError *errhp, OCIType *type, OCIParam *collelem_info, ub4 coll_count );
The OCI service context.
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Obtain diagnostic information by calling OCIErrorGet()
.
The type descriptor that is being constructed.
collelem_info
provides information about the collection element. It is obtained by allocating an OCIParam
parameter handle and setting type information in the OCIParam
using OCIAttrSet()
calls.
The count of elements in the collection. Pass 0 for a nested table (which is unbounded).