FireDAC Components for Amazon Marketplace

Build 23.0.8839

Prepared Statements

Executing Prepared Statements with FireDAC Classes

By default, TFDQuery prepares the query to avoid recompiling the same query over and over.

FDQuery1.SQL.Text := 'SELECT * FROM Orders WHERE BuyerEmail=:BuyerEmail' 
FDQuery1.ParamByName('BuyerEmail').AsString := '[email protected]';
FDQuery1.Open;

Notes

  • If you need to execute a command only once, set ResourceOptions.DirectExecute to true.
  • The TFDConnection class is most useful for one-off data manipulation commands, where prepared statements are unnecessary.
  • The connection must be active and open while a statement is prepared.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839