Hi everybody,
I have an app that has to connect to 3 different database servers, and was wondering what is the best way to do it:
I have an app that has to connect to 3 different database servers, and was wondering what is the best way to do it:
- Create 3 different instances of DBRequestManager and use each one depending on what database I have to access.
- Create a single global instance of DBRequestManager and initialize it with a different server depending on which server I need to access.
- Or it is all the same and I don't need to worry about those little details!! ?