Multi Database Problem - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T21:31:39Z http://stackoverflow.com/feeds/question/1081434 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081434/multi-database-problem 2 Multi Database Problem JayGlynn 2009-07-04T03:37:29Z 2009-07-04T19:14:39Z <p>Using SubSonic v2.3 in a web app. Each client (200+) will have their own database. We have been putting in the connect string for the client when we create the repository for the database call. What we're seeing now is that client A may make a request at about the same time as client B. Client A may get client B's data. This seems to happen when each client is requesting the same page. I know SubSonic is built for a single db but I've read several posts about switching the connect string in the default provider to get multi database support. Any insights on whatI may need to check would be helpful.</p> http://stackoverflow.com/questions/1081434/multi-database-problem/1082814#1082814 2 Answer by Rob Conery for Multi Database Problem Rob Conery 2009-07-04T19:14:39Z 2009-07-04T19:14:39Z <p>It all resolves around threading, as you're seeing. With 2.2 (the current version), you can wrap your calls with SharedDbConnectionScope. This will reset the connection string:</p> <pre><code>using(new SharedDbConnectionScope("my connection string")){ //.. do your thing here } </code></pre> <p>This will isolate the call in a thread-safe way and change your connection string. I need to update our docs on this...</p>