The BDE (Borland Database Engine) Installer for RAD Studio 10.2 Tokyo is a specialized add-on that restores support for legacy database components in the IDE. While the BDE was the primary database solution for older versions of Delphi and C++Builder, it is now deprecated and has been removed from the default installation since RAD Studio XE7. Purpose & Key Features
The installer is primarily used by developers who must maintain legacy applications built with BDE-based components like TTable, TQuery, and TStoredProc.
Legacy Connectivity: Provides access to Paradox, dBASE, FoxPro, and Access databases through the classic IDAPI layer.
IDE Integration: Unlike a standard BDE runtime, this specific installer also adds the "BDE" tab back to the RAD Studio 10.2 Tokyo Component Palette for design-time use.
External Dependency: Because it is deprecated, it is not included in the standard web or ISO installers for 10.2 Tokyo and must be downloaded separately. How to Install (RAD Studio 10.2 Tokyo)
If you are a registered user, you can typically find the installer on the official Embarcadero Code Central or the Registered Users site. Dr.Bob's Delphi 10.2 Tokyo Clinic
The Borland Database Engine (BDE) is a legacy database technology that is no longer included by default in RAD Studio 10.2 Tokyo. Because the BDE is deprecated, Embarcadero provides it as a separate, optional add-on for registered users who must maintain older applications. Key Installation Information
Availability: The BDE installer is an external download for registered users of RAD Studio, Delphi, or C++Builder 10.2 Tokyo.
Official Download: It is typically found in the "My Downloads" section of the Embarcadero Portal.
Specific Version ID: For 10.2 Tokyo, the BDE installer was historically identified as Item 30752 on Embarcadero’s CodeCentral. How to Install BDE Components in the IDE BDE Installer For RAD Studio- Delphi- C Builder 10.2 Tokyo
Simply running the installer places the BDE files on your system, but you must manually enable the components in the RAD Studio 10.2 IDE to see them in the Tool Palette: Run the Installer: Complete the external BDE setup process.
The BDE Installer for RAD Studio, Delphi, C++ Builder 10.2 Tokyo is more than a historical curiosity—it is a practical lifeline for organizations with deeply entrenched legacy database systems. By enabling the long-obsolete Borland Database Engine to function within a modern Windows 10/11 IDE, the installer allows developers to preserve business logic, maintain compliance, and avoid catastrophic data migration costs. Yet, it is not a permanent solution. As 64-bit computing becomes ubiquitous and Windows security evolves, dependence on BDE introduces technical debt and deployment risks. Therefore, while the BDE installer is an invaluable tool for RAD Studio 10.2 Tokyo users today, it should be paired with a clear roadmap toward modern data access frameworks. In bridging the gap between 1990s data architecture and 2017 IDE capabilities, the BDE installer exemplifies the delicate balance between innovation and legacy that defines professional software engineering.
To use the Borland Database Engine (BDE) with RAD Studio 10.2 Tokyo, you must perform a manual installation because the BDE is no longer included in the standard IDE setup. While the engine is deprecated and superseded by technologies like FireDAC, an official external installer remains available for developers maintaining legacy systems. 1. Downloading the BDE Installer for 10.2 Tokyo
Embarcadero provides a dedicated installer specifically for each RAD Studio version. To find the one for 10.2 Tokyo:
Official Portal: Access the Embarcadero Registered Users site.
ID Search: Search for Download ID 30752, which is the verified BDE Installer for RAD Studio 10.2 Tokyo.
Requirements: You must have a registered license for RAD Studio, Delphi, or C++Builder 10.2 Tokyo to access this download. 2. Installation Steps
Once you have the BDEInstaller.exe (or similar), follow these steps to integrate it with your IDE:
Run the Installer: Execute the downloaded file with administrator privileges. The BDE (Borland Database Engine) Installer for RAD
IDE Recognition: The installer should automatically detect your 10.2 Tokyo installation paths.
Manual Component Registration: If the BDE components (TTable, TQuery, etc.) do not appear in your Tool Palette, you must install the design-time package manually: Open RAD Studio 10.2 Tokyo. Navigate to Component > Install Packages.
Click Add and browse to your binary directory (typically C:\Program Files (x86)\Embarcadero\Studio\19.0\bin).
Select the file dclbde250.bpl (the 250 suffix corresponds to the Tokyo version). 3. Post-Installation Configuration
After installation, you may need to use the BDE Administrator (bdeadmin.exe) to manage aliases and system settings:
Windows 10/11 Compatibility: Run the BDE Administrator as an Administrator to ensure it can save changes to the registry and the IDAPI32.CFG file.
Shared Memory: If you encounter "Insufficient memory" errors, adjust the SHAREDMEMSIZE in the BDE Administrator under Configuration > System > INIT. 4. Why Use the BDE in 2026?
The BDE is officially deprecated and does not support modern features like Unicode or 64-bit architecture. It is strictly used for:
Installing Component Packages - RAD Studio - Embarcadero DocWiki Conclusion The BDE Installer for RAD Studio, Delphi,
The BDE installer writes keys to the Borland root. But 10.2 Tokyo looks for Embarcadero roots. You must merge them.
Open Registry Editor and navigate to:
HKEY_CURRENT_USER\SOFTWARE\Embarcadero\BDS\18.0\Known IDE Packages
Add a string value:
$(BDS)\Bin\bdertl180.bplBorland Database Engine (RTL)Next, navigate to:
HKEY_CURRENT_USER\SOFTWARE\Embarcadero\BDS\18.0\Library
Add a path to the system PATH environment variable via the IDE (Tools > Options > Environment Variables > System Path): Add C:\Program Files (x86)\Common Files\Borland Shared\BDE
RAD Studio 10.2 Tokyo was a major milestone release by Embarcadero (the current owners of Delphi).
Search for the official BDE Installer for RAD Studio- Delphi- C++ Builder 10.2 Tokyo from a trusted source (e.g., Embarcadero’s registered users download area, or a verified third-party archive like GitHub’s “BDE-for-Tokyo” repository). Ensure the file name includes Tokyo or 10.2.
This is not merely the old Borland disk. A modern BDE installer tailored for 10.2 Tokyo is a repackaged, automated setup utility that:
PATH environment variable so the IDE’s compiler can find BDE32.DLL.Unlike the generic BDE installer, the Tokyo-specific version ensures that both Delphi 10.2 Tokyo and C++ Builder 10.2 Tokyo can see the BDE components on the Component Palette (specifically the TDatabase, TSession, and TTable non-visual components under the "Data Access" tab).
You cannot assume the client PC has the BDE installed. You have two choices:
After running the BDE Installer for RAD Studio- Delphi- C++ Builder 10.2 Tokyo, perform this 5-point check:
BDEADMIN.EXE launches without errors.HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Borland\Database Engine exists.TTable component can be dropped on a form.#include <BDE.hpp> compiles without Fatal: File not found.DatabaseName alias like DBDEMOS points to the sample data folder.