We have different environments for our apps, DEV, QA, STAGE, PROD.
For each environment we have a separate SQL Database.
When creating an app in DEV we connect to the DEV SQL Database.
The issue comes up when "promoting" the app from DEV to QA (QA to STAGE and so on).
Once the app is in the QA environment we have to drop the connection to the DEV SQL Database and connect to the QA SQL Database.
Even though both servers have the same exact table names, we're having to "re-connect" every single field on each of the screens (Browse, Detail, Edit). This is done by deleting the table name within the formula bar, start typing it out again, then select it from the dynamic dropdown.

Surely there is a better way to switch databases. Does anyone know?