Oracle® Call Interface Programmer's Guide 11g Release 2 (11.2) Part Number E10646-10 |
|
|
PDF · Mobi · ePub |
Table 19-17 describes the OCI table functions that are described in this section.
Function | Purpose |
---|---|
Delete element |
|
Test whether element exists |
|
Return first index of table |
|
Return last index of table |
|
Return next available index of table |
|
Return previous available index of table |
|
Return current size of table |
Deletes the element at the specified index.
sword OCITableDelete ( OCIEnv *env, OCIError *err, sb4 index, OCITable *tbl );
The OCI environment handle initialized in object mode.
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().
Index of the element that must be deleted.
Table whose element is deleted.
This function returns an error if the element at the given index has already been deleted or if the given index is not valid for the given table.
Note:
The position ordinals of the remaining elements of the table are not changed byOCITableDelete()
. The delete operation creates holes in the table.An error is also returned if any input parameter is NULL
.
OCIErrorGet(), OCITableExists()
Tests whether an element exists at the given index.
sword OCITableExists ( OCIEnv *env, OCIError *err, const OCITable *tbl, sb4 index, boolean *exists );
The OCI environment handle initialized in object mode.
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().
Table in which the given index is checked.
Index of the element that is checked for existence.
Set to TRUE
if the element at the given index
exists; otherwise, it is set to FALSE
.
This function returns an error if any input parameter is NULL
.
OCIErrorGet(), OCITableDelete()
Returns the index of the first existing element in a given table.
sword OCITableFirst ( OCIEnv *env, OCIError *err, const OCITable *tbl, sb4 *index );
The OCI environment handle initialized in object mode.
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().
Table to scan.
First index of the element that exists in the given table that is returned.
If OCITableDelete()
deletes the first five elements of a table, OCITableFirst()
returns the value 6.
This function returns an error if the table is empty.
OCIErrorGet(), OCITableDelete(), OCITableLast()
Returns the index of the last existing element of a table.
sword OCITableLast ( OCIEnv *env, OCIError *err, const OCITable *tbl, sb4 *index );
The OCI environment handle initialized in object mode.
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().
Table to scan.
Index of the last existing element in the table.
This function returns an error if the table is empty.
OCIErrorGet(), OCITableFirst(), OCITableNext(), OCITablePrev()
Returns the index of the next existing element of a table.
sword OCITableNext ( OCIEnv *env, OCIError *err, sb4 index, const OCITable *tbl, sb4 *next_index boolean *exists );
The OCI environment handle initialized in object mode.
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().
Index for the starting point of the scan.
Table to scan.
Index of the next existing element after tbl
(index
).
FALSE
if no next index is available; otherwise, TRUE
.
Returns the smallest position j
, greater than index
, such that exists(j)
is TRUE
.
See Also:
The description of OCITableSize() for information about the existence of non-data holes (deleted elements) in tablesReturns the index of the previous existing element of a table.
sword OCITablePrev ( OCIEnv *env, OCIError *err, sb4 index, const OCITable *tbl, sb4 *prev_index boolean *exists );
The OCI environment handle initialized in object mode.
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().
Index for the starting point of the scan.
Table to scan.
Index of the previous existing element before tbl
(index
).
FALSE
if no previous index is available; otherwise, TRUE
.
Returns the largest position j
, less than index
, such that exists (j)
is TRUE
.
See Also:
The description of OCITableSize() for information about the existence of non-data holes (deleted elements) in tablesReturns the size of the given table, not including any holes created by deleted elements.
sword OCITableSize ( OCIEnv *env, OCIError *err, const OCITable *tbl sb4 *size );
The OCI environment handle initialized in object mode.
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().
Nested table whose number of elements is returned.
Current number of elements in the nested table. The count does not include deleted elements.
The count is decremented when elements are deleted from the nested table. So this count does not include any holes created by deleting elements. To get the count including the holes created by the deleted elements, use OCICollSize().
Example 19-4 shows a code fragment where an element is deleted from a nested table.
Example 19-4 Deleting an Element from a Nested table
OCITableSize(...); // assume 'size' returned is equal to 5 OCITableDelete(...); // delete one element OCITableSize(...); // 'size' returned is equal to 4
To get the count plus the count of deleted elements, use OCICollSize(), as shown in Example 19-5. Continuing Example 19-4.
Example 19-5 Getting a Count of All Elements Including Deleted Elements from a Nested Table
OCICollSize(...) // 'size' returned is still equal to 5
This function returns an error if an error occurs during the loading of the nested table into the object cache, or if any of the input parameters is NULL
.