Icon Prepared Property

property Prepared: Boolean

Usage

Use the Prepared property to determine if a procedure/function is already prepared for execution. If Prepared is True, the procedure/function is prepared, and if Prepared is False, the procedure/function is not prepared. While a procedure/function need not be prepared before execution if it doesn't accept any parameters, it is recommended that you always prepare a procedure/function before executing it, particularly if the procedure/function accepts parameters and is executed more than once.

Information An application can change the current setting of Prepared to prepare or unprepare a procedure/function. If Prepared is True, setting it to False calls the UnPrepare method to unprepare the procedure/function. If Prepared is False, setting it to True calls the Prepare method to prepare the procedure/function.
Image