Multi Database Problem - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T21:31:39Zhttp://stackoverflow.com/feeds/question/1081434http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081434/multi-database-problem2Multi Database ProblemJayGlynn2009-07-04T03:37:29Z2009-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#10828142Answer by Rob Conery for Multi Database ProblemRob Conery2009-07-04T19:14:39Z2009-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>