Abstract
ActiveHook is a datatype defined for use as a callback for the
setActiveHook() method. (See
Section 4.9.2.4, “NdbBlob::setActiveHook()”.)
Definition.
ActiveHook is a custom datatype defined as
shown here:
typedef int ActiveHook
(
NdbBlob* me,
void* arg
)
Description.
This is a callback for
NdbBlob::setActiveHook(), and is invoked
immediately once the prepared operation has been executed (but
not committed). Any calls to getValue() or
setValue() are performed first. The
BLOB handle is active so
readData() or
writeData() can be used to manipulate the
BLOB value. A user-defined argument is
passed along with the NdbBlob.
ActiveHook() returns a nonzero value in the
event of an error.
