Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
OCI Navigational and Type Functions, 7 of 36
Marks a standalone instance as deleted, given a pointer to the instance.
sword OCIObjectMarkDelete ( OCIEnv *env, OCIError *err, dvoid *instance );
The OCI environment handle initialized in object mode. See the description of OCIEnvCreate()
and OCIInitialize()
for more information.
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()
.
Pointer to the instance. It must be standalone, and if it is an object it must be pinned.
This function accepts a pointer to a standalone instance and marks the object as deleted. The object is freed according to the following rules:
The object is marked deleted. The memory of the object is not freed. The object is deleted in the server when the object is flushed.
The object is marked deleted. The memory of the object is not freed.
This function frees a value immediately.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|