Easy Access to MS Access Databases with Delphi and C++ Builder Components
September 18, 2020
If you need to work with Microsoft Access databases in your application then you can use the Data Access Objects (DAO) library from WINSOFT:
Component list
The DAO library contains the following components: TDAODatabase, TDAODataSet, TDAOTable, TDAOQuery, TDAOUpdateSQL
Examples
// Create a new database
uses DAO, DAODS;
GetDBEngine.CreateDatabase('C:\database.mdb', dbLangGeneral…