Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
OCI Navigational and Type Functions, 14 of 36
Checks to see if an object is marked as dirty.
sword OCIObjectIsDirty ( OCIEnv *env, OCIError *err, dvoid *ins, boolean *dirty );
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 an instance.
Return value for the dirty status.
The instance passed to this function must be standalone. If the instance is an object, the instance must be pinned.
This function returns the dirty status of an instance. If the instance is a value, this function always returns FALSE
for the dirty status.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|