We are in a similar boat. Instead of one application with hundreds of forms, we have over a hundred applications with probably thousands of forms all together. Here is a summary of what we have started to do.
There is some help on Embarcadero's own web site about migrating away from BDE, but it is not as easy as they make it sound. I've read it several times. You'll see a little bit of hype about a tool they created called reFind which uses regular expression matching patterns to find and replace string patterns with other strings. I learned about regular expressions on-line and also bought a tool called Regex Buddy to help me create BDE pattern strings that we use a lot. We have decided to use FireDAC as the replacement because dbExpress just wasn't good enough.
Much of the transition to FireDAC from BDE has had to be manual. Instead of TTables and TwwTables with filters or master/detail relationships, we have to put in TQueries. There is no tool that I can think of, or write, which would seamlessly convert TTables to TQueries. They have different methods and properties. Refresh works on TTables but not on TQueries. TTables sort using Indexes, while TQueries sort using ORDER BY statements. We make heavy use of TTable.FindKey, but have to change those to WHERE statements, or calls to the Locate function. We also make use of TTable.Last to manually increment record numbers, but now we have to use TQueries to get SELECT MAX(IFNULL(FIELD,0)+1) statements, or re-create the tables with auto-incrementing IDs and strip out the code that used to create them. There is too much for us to consider automating that part of the conversion process. So we need to do it manually.
However, I have written some stuff and utilized programs that come with Delphi XE7 to faithfully convert a BDE application that uses TQueries into an application that uses TFDQueries. It has taken a lot of research and development, but I can do it. Currently I've converted 5 applications (2 from BDE and 3 from dbExpress). There were several obstacles I had to overcome. First, not all data modules are stored as Text. Older ones are stored in Binary, so I have a small EXE that converts the form and data module .dfm's to Text. Second, some properties of TTable have to be completely stripped, and they are multi-line tables so the grep and reFind utilities don't work with them. The properties are FieldDefs and IndexDefs. Yes, there are some TTables we will leave in our applications because they make great look-up components and don't contain that many records. Third, our database allows us to separate schema names from table names with a slash, and those are used all over the place in our code. My regular expressions search for those and replace the right slashes with periods.
I understand why Embarcadero let go of BDE, but that doesn't mean it hasn't been painless for us. BDE had problems right away with Windows Vista and User Account Control. Simply installing BDE, much less making it run, on any OS past Vista has been nightmarish at times. I just didn't like that when BDE was discontinued, the only out-of-the-box replacement was dbExpress, which didn't work for us at all. Four components to replace two components? Requiring persistent fields? dbExpress insisting on a value for every field, and counting an empty string the same as Null? It was a pain to work. FireDAC is really nice, though, but it just doesn't work the way BDE does.
"Roj"