TFDUpdateSQL | 生成添加,删除,修改SQL语句 |
TFDMetaInfoQuery | 查询数据源信息 |
TFDEventAlerter |
负责处理数据库事件通知 使用TFDEventAlerter类来处理数据库事件通知。 FDEventAlerter1.Options.Kind := ‘DBMS_ALERT‘; FDEventAlerter1.Names.Text := ‘Customers‘; FDEventAlerter1.Options.Synchronize := True; FDEventAlerter1.Options.Timeout := 10000; FDEventAlerter1.OnAlter := DoAlert; FDEventAlerter1.OnTimeout := DoTimeout; FDEventAlerter1.Active := True; ........ procedure TForm1.DoAlert(ASender: TFDCustomEventAlerter; const AEventName: String; const AArgument: Variant); begin if CompareText(AEventName, ‘Customers‘) = 0 then qryCustomers.Refresh; end; procedure TForm1.DoTimeout(ASender: TObject); begin qryCustomers.Refresh; end; |
TFDLocalSQL | SQLite-based本地SQL引擎 |
TFDGUIxErrorDialog | 错误对话框 |
TFDGUIxLoginDialog |
登陆对话框 with FDGUIxLoginDialog1.VisibleItems do begin Clear; Add(‘Server‘); Add(‘User_name=Benutzer‘); Add(‘Password=Kennwort‘); Add(‘OSAuthent‘); end; FDConnection1.LoginDialog := FDGUIxLoginDialog1; FDConnection1.Connected := True; |
TFDGUIxAsyncExecuteDialog | 这个对话框显示了SQL查询执行的进展 |
TFDGUIxScriptDialog | 这个对话框显示了一个SQL脚本执行进展 |
TFDGUIxWaitCursor | 数据库游标控制,这个是强行加到FireDAC应该程序中的 |
TFDMoniRemoteClientLink | 使用TFDMoniRemoteClientLink组件链接FDMonitor跟踪功能,应用程序和设置 |
TFDMSAccessService | 实现Microsoft Access数据库的创建、删除、压缩和修复服务 |
TFDScript | 实现SQL脚本引擎,能够执行一系列SQL查询 |
TFDBatchMove | 不同数据源之间的数据转移 |
以上都是常用的组件,有个别本人感觉初学用不到,所以没有一一列出,有兴趣的可以个人研究。
时间: 2024-10-18 04:51:51