Resolving 'Bde.DBTables.hpp' file not found Error

Asked 1 years ago, Updated 1 years ago, 39 views

I am trying to build a project file created with Borland C++ Builder 6 that can be partially added to a new project in C++ Builder 10.3.

While building the project with three additional files: Main.cpp, Main.h, Main.dfm, and avoiding some errors, the following error occurred:

[bcc32c fatal error] DBTables.hpp(11): 'Bde.DBTables.hpp' file not found

I received this error, but please let me know how to avoid it.

c++

2022-09-30 21:44

1 Answers

Bde.DBTables.hpp is a file for a DB access component called BDE, but it has been recommended that updates stop and migrate, and is no longer installed normally recently.
In the case of the product version, it seems that BDE can be added later, but I don't know if Community Edition is possible.
The official help has a way to migrate BDE applications to FireDAC (the current component for DB access), but it is not clear if Community Edition can do the same.
http://docwiki.embarcadero.com/RADStudio/Rio/ja/BDE_%E3%82%A2%E3%83%97%E3%83%AA%E3%82%B1%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E3%81%AE%E7%A7%BB%E8%A1%8C%EF%BC%88FireDAC%EF%BC%89

If you cannot migrate using the link above, I think there is no easy way to avoid it.


2022-09-30 21:44

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.