2016-02-27 52 views
1

Delphi(XE7)中的TFDQuery(FireDAC)中的TADOQuery.Properties等效於什麼?TFDQuery中的等效TADOQuery.Properties

我在項目中使用了QUsers.Properties['Unique Table'].Value,我打算將它從ADO組件轉換爲FireDAC組件。

回答

0

我認爲你可以使用macrosTFDQuery(見docwiki.embarcadero.com

FDQuery1.SQL.Text := 'SELECT * FROM !TABLE_NAME_MACROS !WHERE_CLAUSE'; 

FDQuery.MacroByname('TABLE_NAME_MACROS').AsRaw := 'my_table'; 
FDQuery.MacroByname('WHERE_CLAUSE').AsRaw := 'WHERE ID = :ParamID'; 

FDQuery.ParamByname('ParamID').AsInteger := 1; 

FDQuery1.Open;