FireDAC Components

Rapidly create and deploy powerful Delphi & C++ Builder Apps

  • Feature-rich high-performance Data Access Components
  • SQL-92 Compliant data accesst
  • Dynamic Schema / Meta-data Discovery
  • Unicode enabled 32/64-bit support


Low-Code FireDAC Data Integration

Easily build applications that read and write live data from popular on-premise & cloud data sources with RAD Studio

RAD Studio Add On

The fastest & easiest way to build data driven Apps. More than 200 FireDAC Connectors for Delphi & C++ Builder.

Enterprise-Class Design

Built with the same reliability, scalability, performance & security powering leading data integration solutions.

Data-Centric Architecture

A robust SQL-engine simplifies data movement & processing from Cloud Apps, NoSQL, Files, & more.

Secure Connectivity

Standard Enterprise-class security features such as TLS/SSL encryption for client-server communications.

FireDAC Components

High-performance FireDAC components for NoSQL, Big Data, & SaaS Integration.


Access
Act CRM
Act-On
Active Directory
ActiveCampaign
Acumatica
Adobe Analytics
ADP
Airtable
AlloyDB
Amazon Athena
Amazon DynamoDB
Amazon Marketplace
Amazon S3
Asana
Authorize.Net
Avalara AvaTax
Avro
Azure Active Directory
Azure Analysis Services
Azure Data Catalog
Azure Data Lake Storage
Azure DevOps
Azure Table
Basecamp
BigCommerce
BigQuery
Bing Ads
Bing Search
Box
Bugzilla
Bullhorn CRM
Cassandra
Cloudant
CockroachDB
Confluence
Cosmos DB
Couchbase
CouchDB
CSV
Databricks
DB2
DocuSign
Dropbox
Dynamics 365
Dynamics 365 Business Central
Dynamics CRM
Dynamics GP
Dynamics NAV
eBay
eBay Analytics
Elasticsearch
Email
Epicor ERP
Exact Online
Excel
Excel Online
Facebook Ads
FHIR
FinancialForce
FreshBooks
Freshdesk
FTP
GitHub
Gmail
Google Ad Manager
Google Ads
Google Analytics
Google Calendar
Google Campaign Manager
Google Cloud Storage
Google Contacts
Google Data Catalog
Google Directory
Google Drive
Google Search
Google Sheets
Google Spanner
GraphQL
Greenplum
HBase
HCL Domino
HDFS
Highrise
Hive
HubSpot
IBM Cloud Object Storage
IBM Cloud SQL Query
IBM Informix
Impala
Jira
Jira Service Desk
JSON
Kintone
LDAP
LinkedIn Ads
Magento
MailChimp
MariaDB
Marketo
MarkLogic
Microsoft Dataverse
Microsoft Exchange
Microsoft OneDrive
Microsoft Planner
Microsoft Project
Microsoft Teams
Monday.com
MongoDB
MYOB AccountRight
Neo4J
NetSuite
OData
Odoo
Office 365
OneNote
Oracle
Oracle Eloqua
Oracle Financials Cloud
Oracle HCM Cloud
Oracle Sales
Oracle SCM
Oracle Service Cloud
Outreach.io
Parquet
Paylocity
PayPal
Phoenix
Pipedrive
Power BI XMLA
Presto
QuickBase
QuickBooks
QuickBooks Online
QuickBooks POS
Raisers Edge NXT
Reckon
Reckon Accounts Hosted
Redis
Redshift
REST
RSS
Sage 200
Sage 300
Sage 50 UK
Sage Cloud Accounting
Sage Intacct
Salesforce
Salesforce Marketing
Salesforce Pardot
Salesloft
SAP
SAP Business One
SAP BusinessObjects BI
SAP ByDesign
SAP Concur
SAP Fieldglass
SAP HANA
SAP HANA XS Advanced
SAP Hybris C4C
SAP Netweaver Gateway
SAP SuccessFactors
SAS Data Sets
SAS xpt
SendGrid
ServiceNow
SFTP
SharePoint
SharePoint Excel Services
ShipStation
Shopify
Smartsheet
Snowflake
Spark
Splunk
Square
Streak
Stripe
Sugar CRM
SuiteCRM
SurveyMonkey
Sybase
Sybase IQ
Tableau CRM Analytics
Tally
TaxJar
Teradata
Trello
TSheets
Twilio
Twitter Ads
Veeva
Veeva CRM
Wave Financial
WooCommerce
WordPress
Workday
xBase
Xero
Xero WorkflowMax
XML
YouTube Analytics
Zendesk
Zoho Books
Zoho Creator
Zoho CRM
Zoho Inventory
Zoho Projects
Zuora
… Dozens More
(API Driver)





Powerful Enterprise-class Development Features

Full-featured and consistent SQL access to any supported data source through FireDAC



  • Seamless RAD Studio Integration

    Feature-rich high-performance Data Access Components that extend Delphi & C++Builder Apps with SaaS, NoSQL, & Big Data connectivity.

  • Pure FireDAC Components

    Based on FireDAC Universal Data Access for developing applications for multiple devices, connected to enterprise databases.

  • Replication and Caching

    Our replication and caching commands make it easy to copy data to local and cloud data store as Oracle, SQL Server, Google Cloud SQL, etc. The replication commands include many features that allow for intelligent incemental updates to cached data.

  • String, Date, Numeric SQL Functions

    The driver includes a library of 50 plus functions that can manipulate column values into the desired result. Popular examples include Regex, JSON, and XML processing functions.

  • Developer Friendly

    Full Design-time support for data operations directly from RAD Studio. Work with live data diectly from the IDE Data Explorer and FireDAC explorer.

  • Collaborative Query Processing

    Our drivers enhance the data source's capabiilities by additional client side processing, when needed, to enable analytic summaries of data such as SUM, AVG, MAX, MIN, etc.

  • Easily Customizable and Configurable

    The data model exposed by our FireDAC Components can easily be customized to add or remove tables/columns, change data types, etc. without requiring a new build. These customizations are supported at runtime using human-readable schema files that are easy to edit.

  • Enterprise-class Secure Connectivity

    Includes standard Enterprise-class security features such as TLS/ SSL data encryption for all client-server communications.

FireDAC Components in Action

Connecting to Any Data Source is as Easy as Connecting to a Database


Standard FireDAC Components


Just like connecting with a typical RDBMS like MySQL, or SQL Server. User standard FireDAC components like TDFManager, TDFConnection, TDFQuery.

                    									FDConnection1.Name := 'code.product Connection';
                    									FDConnection1.DriverName := 'CData.Fire.code.product';
                    									with FDConnection1.Params as
                    									    TFDPhysCData code.product ConnectionDefParams do begin

                    									    ...
                    									end;

                    									FDConnection1.Connected := true;
                    									FDQuery1.Active := true;
                    									FDQuery1.Open('select * from code.table');

                    									...
                 

SQL-92 Compliant Queries


Write standard SQL queries with support for joins, updates, aggregation, and more. Our drivers compensate for features lacking in the source.

SELECT WITH INNER JOIN

                    SELECT Events.Id, Events.Name, Events.Fax,
                      Opportunity.AccountId, Opportunity.CloseDate
                    FROM Events
                    INNER JOIN Opportunity
                      ON Events.Id = Opportunity.AccountId
                     

AGGREGATE FUNCTIONS

								SELECT Name, AVG(AnnualRevenue) FROM code.table GROUP BY Name
                  

CRUD OPERATIONS

								UPDATE code.table SET Name='John' WHERE Id = @myId