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.

Has anyone every gotten NHibernate working with an in memory database? Is it even possible? The connection string I'm using is this:

Data Source=:memory:;Version=3;New=True
link|improve this question

78% accept rate
feedback

7 Answers

up vote 27 down vote accepted

A SQLite memory database only exists as long as the connection to it remains open. To use it in unit tests with NHibernate:
1. Open an ISession at the beginning of your test (maybe in a [SetUp] method).
2. Use the connection from that session in your SchemaExport call.
3. Use that same session in your tests.
4. Close the session at the end of your test (maybe in a [TearDown] method).

link|improve this answer
agh, that makes perfect sense! Will give it a shot – Chris Canal Oct 11 '08 at 18:09
1  
also take a look at this exemple implementing DriverConnectionProvider: notepad2.wordpress.com/2008/05/19/… – smoothdeveloper Apr 25 '09 at 8:00
FYI, I had trouble keeping the connection open with NHibernate after a call to Flush. Found the answer at bit.ly/23CRTT – Jon Adams Aug 2 '09 at 17:47
feedback

If you add Pooling=True;Max Pool Size=1 to your connection string, you'll get the same connection (and therefore database) each time.

link|improve this answer
Does this really work with SQLite DataBases? – tobsen Jun 2 '09 at 18:52
3  
I just checked and it really works! SQLite connection-strings require a colon in the end though. So the final connection string looks like: "Data Source=:memory:;Version=3;New=True;Pooling=True;Max Pool Size=1;" – tobsen Jun 2 '09 at 18:56
1  
This is the real solution! – bleevo Jul 16 '09 at 4:46
Freaking awesome! The best solution for me too. – Hristo Deshev Aug 20 '09 at 16:03
If anyone still "randomly" gets exceptions after trying this, make sure you've closed any existing sessions before you open another one. – Scott Whitlock Apr 13 '11 at 15:07
show 1 more comment
feedback

I had similar problems that lasted even after opening the ISession as stated above, and adding "Pooling=True;Max Pool Size=1" to my connection string. It helped, but I still had some cases where the connection would close during a test (usually right after committing a transaction).

What finally worked for me was setting the property "connection.release_mode" to "on_close" in my SessionFactory configuration.

My configuration in the app.config file now look likes this:

  <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    <reflection-optimizer use="true" />
    <session-factory>
      <property name="connection.connection_string_name">testSqlLiteDB</property>
      <property name="connection.driver_class">NHibernate.Driver.SQLite20Driver</property>
      <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
      <property name="connection.release_mode">on_close</property>
      <property name="dialect">NHibernate.Dialect.SQLiteDialect</property>
      <property name="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</property>
      <property name="query.substitutions">true=1;false=0</property>
    </session-factory>
  </hibernate-configuration>

Hope it helps!

link|improve this answer
feedback

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.

  1. Before every test: create connection
  2. Create schema on this connection
  3. Run test. The same connection is used for all sessions
  4. After test: close connection

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.

link|improve this answer
Do you use the OpenSession overload to suppy the connection or do you have a more cunning way of using the same connection? – Graham Ambrose May 11 '09 at 12:38
I use OpenSession(IDbConnection), and get the connection once from sessionFactory.ConnectionProvider.GetConnection(). I could probably implement my own ConnectionProvider, then it would only be a matter of configuration. But I didn't have the time to do this until now. – Stefan Steinegger May 11 '09 at 13:43
feedback

Just a wild guess, but is the sql output by NHibernate using a command unsupported by sqlite?

Also, What happens if you use a file instead of memory? (System.IO.Path.GetTempFileName() would work i think...)

link|improve this answer
feedback

I am doing it with Rhino Commons. 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.

link|improve this answer
feedback

I hade alot off problems with SQLite memory database. So now we are using SQLite working with files on a ramdrive disk.

link|improve this answer
+1 for creativity – Mr Happy Jan 5 at 14:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.