Hi,
We are creating Apps and connecting them to a standardized SQL databases.
We deploy our apps per client to their environment and connect to their own database.
All of our clients have the exact same database with the same schemas, tables, views and stored procedures.
This means we can connect the app manually to another database from another client and the app won't give any errors.
So our idea now is to have the apps sit in one location and then depending on who is using it, it will connect to that client's database.
Is such a thing possible?
Eg. We are Company A and we host our apps. Client A and Client B have access to our apps. When Client A uses the app the app shows his data from his database and when Client B uses the app it will show his data from his database.(Since the databases are standardized there will not be any app errors like binding errors)
Thanks!