Delphi(XE7)中的TFDQuery
(FireDAC)中的TADOQuery.Properties
等效於什麼?TFDQuery中的等效TADOQuery.Properties
我在項目中使用了QUsers.Properties['Unique Table'].Value
,我打算將它從ADO組件轉換爲FireDAC組件。
Delphi(XE7)中的TFDQuery
(FireDAC)中的TADOQuery.Properties
等效於什麼?TFDQuery中的等效TADOQuery.Properties
我在項目中使用了QUsers.Properties['Unique Table'].Value
,我打算將它從ADO組件轉換爲FireDAC組件。
在一定程度上,這將是TFDQuery.UpdateOptions.UpdateTableName屬性: http://docwiki.embarcadero.com/Libraries/Seattle/en/FireDAC.Stan.Option.TFDBottomUpdateOptions.UpdateTableName
我認爲你可以使用macros
在TFDQuery
(見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;