Important: The information in this document is obsolete and should not be used for new development.
DBRemoveResultHandler
You can use theDBRemoveResultHandler
function to remove an application result handler.
FUNCTION DBRemoveResultHandler (dataType: DBType): OSErr;
dataType
- The type of result handler to remove.
DESCRIPTION
TheDBRemoveResultHandler
function removes from memory the specified application result handler. This function cannot remove a system result handler.SPECIAL CONSIDERATIONS
TheDBRemoveResultHandler
function may move or purge memory. You should not call this routine from within an interrupt, such as in a completion routine or a VBL task.ASSEMBLY-LANGUAGE INFORMATION
The trap macro and routine selector for theDBRemoveResultHandler
function are
Trap macro Selector _DBRemoveResultHandler $0215 RESULT CODES
noErr 0 No error rcDBNoHandler -811 There is no handler for this data type installed for the current application rcDBPackNotInited -813 The InitDBPack
function has not yet been calledSEE ALSO
For a discussion of result handlers, see "Converting Query Results to Text" beginning on page 12-43.