Problem using SQLite :memory: with NHibernate - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T20:07:50Zhttp://stackoverflow.com/feeds/question/189280http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate7Problem using SQLite :memory: with NHibernateChris Canal2008-10-09T21:27:24Z2009-01-29T16:13:45Z
<p>I use NHibernate for my dataacess, and for awhile not I've been using SQLite for local integration tests. I've been using a file, but I thought I would out the :memory: option. When I fire up any of the integration tests, the database seems to be created (NHibernate spits out the table creation sql) but interfacting with the database causes an error.</p>
<p>Has anyone every gotten NHibernate working with an in memory database? Is it even possible? The connection string I'm using is this:</p>
<pre><code>Data Source=:memory:;Version=3;New=True
</code></pre>
http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/192084#1920840Answer by chills42 for Problem using SQLite :memory: with NHibernatechills422008-10-10T16:13:51Z2008-10-10T16:13:51Z<p>Just a wild guess, but is the sql output by NHibernate using a command unsupported by sqlite?</p>
<p>Also, What happens if you use a file instead of memory? (System.IO.Path.GetTempFileName() would work i think...)</p>
http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/193400#1934009Answer by Sean Carpenter for Problem using SQLite :memory: with NHibernateSean Carpenter2008-10-10T23:54:10Z2008-10-10T23:54:10Z<p>A SQLite memory database only exists as long as the connection to it remains open. To use it in unit tests with NHibernate:<br />
1. Open an ISession at the beginning of your test (maybe in a [SetUp] method).<br />
2. Use the connection from that session in your SchemaExport call.<br />
3. Use that same session in your tests.<br />
4. Close the session at the end of your test (maybe in a [TearDown] method).</p>
http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/196979#1969791Answer by Stefan Steinegger for Problem using SQLite :memory: with NHibernateStefan Steinegger2008-10-13T08:09:42Z2008-10-13T08:09:42Z<p>We are using SQLite in memory for all our database tests. We are using a single ADO connection for the tests that is reused for all NH sessions opened by the same test. </p>
<ol>
<li>Before every test: create connection</li>
<li>Create schema on this connection</li>
<li>Run test. The same connection is used for all sessions</li>
<li>After test: close connection</li>
</ol>
<p>This allows also running tests with several sessions included. The SessionFactory is also created once for all tests, because the reading of the mapping files takes quite some time.</p>
http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/224374#2243740Answer by Tim Scott for Problem using SQLite :memory: with NHibernateTim Scott2008-10-22T03:23:20Z2008-10-22T03:23:20Z<p>I am doing it with <a href="https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk/rhino-commons/" rel="nofollow">Rhino Commons</a>. If you don't want to use Rhino Commons you can study the source do see how it does it. The only problem I have had is that SQLite does not support nested transactions. This forced me to change my code to support integration testing. Integration testing with in memory database is so awesome, I decided it was a fair compromise.</p>
http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/491654#4916544Answer by Thom for Problem using SQLite :memory: with NHibernateThom2009-01-29T13:52:20Z2009-01-29T13:52:20Z<p>If you add <code>Pooling=True;Max Pool Size=1</code> to your connection string, you'll get the same connection (and therefore database) each time.</p>
http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/492289#492289-1Answer by Anders B for Problem using SQLite :memory: with NHibernateAnders B2009-01-29T16:13:45Z2009-01-29T16:13:45Z<p>I hade alot off problems with SQLite memory database.
So now we are using SQLite working with files on a ramdrive disk.</p>