Data.Win.ADODB.TADOCommand.Prepared

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Unit: Data.Win.ADODB
Parent: TADOCommand

Delphi

property Prepared: WordBool read GetPrepared write SetPrepared default False;

C++

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

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