4.FireDAC Component Snapshot Two

Source: Internet
Author: User
Tags microsoft access database

Tfdupdatesql Build Add, delete, modify SQL statements
Tfdmetainfoquery Querying data source information
tfdeventalerter

is responsible for handling database event notifications

 using the Tfdeventalerter class to handle database event notifications. 
 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 Local SQL engine
Tfdguixerrordialog Error dialog box
Tfdguixlogindialog

Login dialog box

With FDGUIxLoginDialog1.  Begin  
Clear;
Add(' Server ');   
Add(' User_name=benutzer ');   
Add(' Password=kennwort ');   
Add(' osauthent ');   
End;
FDConnection1.:= FDGUIxLoginDialog1;   
FDConnection1.:True;   
Tfdguixasyncexecutedialog This dialog box shows the progress of SQL query execution
Tfdguixscriptdialog This dialog box shows the progress of a SQL script execution
Tfdguixwaitcursor Database cursor control, this is forced to add to FIREDAC should be in the program
Tfdmoniremoteclientlink Use Tfdmoniremoteclientlink components to link fdmonitor tracing features, applications and settings
Tfdmsaccessservice Implementing the Create, delete, compress, and repair services for a Microsoft Access database
Tfdscript Implement SQL scripting engine to execute a series of SQL queries
Tfdbatchmove Data transfer between different data sources

The above are commonly used components, there are individual I feel that beginners can not use, so there is no one listed, interested in individual research.

4.FireDAC Component Snapshot Two

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.