version 6.0
DR DELETE BIND (bindID)
| Parameter | Type | Description | |
| bindID | Longint | Bind ID |
Description
The command DR DELETE BIND disposes of a bind and frees the memory used. Binds use little memory, but a complex database may hold many binds. Use this command to free the memory used by a bind. A bind cannot be deleted while it is active.
Example
The following example shows how to delete a bind once it is no longer needed.
vBind := DR New bind `Create a new bind `Do some processing here DR DELETE BIND (vBind) `Delete the bind and free up memory
See Also