Using Sqlite InMemory DB for unittesting MSSQL-DB - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:47:52Zhttp://stackoverflow.com/feeds/question/804502http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/804502/using-sqlite-inmemory-db-for-unittesting-mssql-db0Using Sqlite InMemory DB for unittesting MSSQL-DBNenad 2009-04-29T22:09:41Z2009-05-11T23:10:48Z
<p>Hallo,</p>
<p>i am trying to implent this solution
<a href="http://www.codethinked.com/post/2008/10/19/NHibernate-20-SQLite-and-In-Memory-Databases.aspx" rel="nofollow" title="NHibernate-20-SQLite-and-In-Memory-Databases">NHibernate-20-SQLite-and-In-Memory-Databases</a></p>
<p>the only problem is that we have hbm's like this</p>
<pre><code><class name="aTable" table="[dbo].[aTable]" mutable="true" lazy="false">
</code></pre>
<p>with [dbo] in the tablename because we are working with mssql
and this does not work with Sqlite.</p>
<p>i found also this posting on the rhino-tools-dev group where they talk about just removing the schema from the mapping:<br>
<a href="http://groups.google.com/group/rhino-tools-dev/browse%5Fthread/thread/618f4be5ab739323" rel="nofollow">link to discussion</a></p>
<p>but on NH2 there doesn't seem to be a <br></p>
<pre><code>classMapping.Schema
</code></pre>
<p>there is a <br></p>
<pre><code>classMapping.Table.Schema
</code></pre>
<p>but it seems to be read-only.</p>
<p>e.g.</p>
<pre><code> foreach (PersistentClass cp in configuration.ClassMappings) {
// Does not work - throws a
//System.IndexOutOfRangeException: Index was outside the bounds of the array.
cp.Table.Schema = "";
}
</code></pre>
<p><br></p>
<ul>
<li>Is there a way to tell Sqlite to
ignore the "dbo." <br>
(i tried "attach datbase :memory: as dbo" but this didn't seem to help)
<br> or <br> </li>
<li>can i programmatically remove it from the classmappings ?<br>
(unfortunately changing the hbm's is not possible right now)</li>
</ul>
http://stackoverflow.com/questions/804502/using-sqlite-inmemory-db-for-unittesting-mssql-db/804867#8048671Answer by Stefan Steinegger for Using Sqlite InMemory DB for unittesting MSSQL-DBStefan Steinegger2009-04-30T00:12:13Z2009-04-30T00:12:13Z<p>We are using Sqlite to run unit tests with NH 2.0.1. Actually, I didn't run into this problem. I just didn't specify dbo, I think it is default on SqlServer.</p>
<p>By the way, there is a default_schema parameter in the configuration file. This is actually the database name, but you can try putting the dbo there, only for the SqlServer configuration of course.</p>
http://stackoverflow.com/questions/804502/using-sqlite-inmemory-db-for-unittesting-mssql-db/804930#8049300Answer by zvolkov for Using Sqlite InMemory DB for unittesting MSSQL-DBzvolkov2009-04-30T00:41:39Z2009-04-30T00:41:39Z<p>We had too many problems with SQLite which eventually pushed us to switch to SQL Express.
Problems I remember:</p>
<ol>
<li>SQLite, when used in-memory, discards the database when Session is closed</li>
<li>SQLite does not support bunch of SQL constructs such basic ones as ISNULL, but also more advanced like common table expressions and others added in SQL 2005 and 2008. This becomes important when you start writing complex named queries.</li>
<li>SQLite's datetime has bigger range of possible values than SQL Server's</li>
<li>The API NHibernate uses for SQLite behaves differently than ADO.NET for MS SQL Server when used in scope of transaction. One example is the hbm-to-ddl tool whose Execute method does not work inside transaction with SQL Server but works fine with SQLite.</li>
</ol>
<p>To summarize, SQLite-based unit-testing is very far from being conclusively representative of the issues you'll encounter when using MS SQL Server in PROD and therefore undermines the credibility of unit-testing overall.</p>
http://stackoverflow.com/questions/804502/using-sqlite-inmemory-db-for-unittesting-mssql-db/806331#8063310Answer by Nenad for Using Sqlite InMemory DB for unittesting MSSQL-DBNenad 2009-04-30T10:36:38Z2009-04-30T10:36:38Z<p>After looking through the source of NH and some experimenting i think i found a simple workaround -</p>
<pre><code> foreach (PersistentClass cp in configuration.ClassMappings)
{
// Input : [dbo].[Tablename] Output : Tablename
cp.Table.Name = Regex.Replace(cp.Table.Name, @"^\[.*\]\.\[", "");
cp.Table.Name = Regex.Replace(cp.Table.Name, @"\]$", "");
// just to be sure
cp.Table.Schema = null;
}
</code></pre>
<p>note that i can set Table.Schema to null while an empty string threw an exception ...</p>
<p>thanks for the answers !</p>