I am looking for some guidance on this one. Here is our scenario;
We have a Master Database. This Database will store connection information to a series of other databases. All of these databases have the exact same schema (And all will be SQL 2000). There is one, and only one master database. Its schema is different from the series of databases schemas. Its connection information will never change.
The trickest part is this, a user may select which databases they would like to fetch data from. They can choose to select any combination of databases. When the data is fetched, it is fetched from all databases and all the results are all displayed at the same time.
What do you think is the best way to accomplish this? I was thinking of a self servicing solution, but passing connection information through the constructor in Adapter seems like it would make things easier.
I am currently trying to decide if I should but something on top of LLBLGen's Generated code, or if I should modify the code. But I am not limited to these solutions, these are the only ones I have thought of.