Data.Win.ADODB.TADOCommand.Prepared

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Prepared: WordBool read GetPrepared write SetPrepared default False;

C++

__property System::WordBool Prepared = {read=GetPrepared, write=SetPrepared, default=0};

Properties

Type Visibility Source Unit Parent
property published
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TADOCommand

Description

Specifies whether the command is prepared before execution.

Set Prepared before calling the Execute method to specify whether ADO prepares the command. If Prepared is set to true and the command component is connected to a data store, ADO prepares the command before executing it. If Prepared is set to false, ADO does not prepare the command.

The default value of Prepared is false.

See Also