FluentNhibernate and SQLite - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T09:21:50Z http://stackoverflow.com/feeds/question/845490 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/845490/fluentnhibernate-and-sqlite 1 FluentNhibernate and SQLite couellet 2009-05-10T15:05:40Z 2009-06-04T00:00:49Z <p>Hi,</p> <p>I can't get SQLite Driver working in my sessionfactory.</p> <p>I downloaded SQLite 1.0.48 from <a href="http://sqlite.phxsoftware.com/" rel="nofollow">http://sqlite.phxsoftware.com/</a></p> <p>I have added the references to System.Data.SQLite in my Tests project.</p> <pre><code>public static IPersistenceConfigurer GetSqlLiteConfigurer() { try { return SQLiteConfiguration .Standard .InMemory(); } catch (Exception ex) { throw ex; } } </code></pre> <p>This is how I generate the Configurer</p> <p>The problem is when I build my sessionfactory I get the following error:</p> <pre><code>NHibernate.HibernateException: The IDbCommand and IDbConnection implementation in the assembly System.Data.SQLite could not be found. Ensure that the assembly System.Data.SQLite is located in the application directory or in the Global Assembly Cache. If the assembly is in the GAC, use &lt;qualifyAssembly/&gt; element in the application configuration file to specify the full name of the assembly. at NHibernate.Driver.ReflectionBasedDriver..ctor(String driverAssemblyName, String connectionTypeName, String commandTypeName) at NHibernate.Driver.SQLite20Driver..ctor() </code></pre> <p>I have tried to change of SQLite version but did not fix the issue.</p> <p>I can't find what's the problem and I have been working on this for 2 days now.</p> <p>Let me know if you need more information.</p> <p>Thanks for the help!</p> <p>Charles</p> http://stackoverflow.com/questions/845490/fluentnhibernate-and-sqlite/845501#845501 2 Answer by couellet for FluentNhibernate and SQLite couellet 2009-05-10T15:11:32Z 2009-05-10T15:11:32Z <p>I have fixed my problem by getting the System.Data.SQLite.dll file that is in the FluentNHibernate SVN Repository.</p> <p>This is now working very well.</p> <p>I should have checking this earlier ;)</p> http://stackoverflow.com/questions/845490/fluentnhibernate-and-sqlite/939983#939983 0 Answer by Aaron Fischer for FluentNhibernate and SQLite Aaron Fischer 2009-06-02T14:48:05Z 2009-06-02T14:48:05Z <p>When I ran into this issue it was caused by running having my application's processor property set to anycpu and running on a 64bit system. To correct the issue I set my application processor property to x86. I don't think the System.Data.SQLite.dll supports running under a x64 process.</p> http://stackoverflow.com/questions/845490/fluentnhibernate-and-sqlite/944645#944645 0 Answer by Colin Bowern for FluentNhibernate and SQLite Colin Bowern 2009-06-03T13:08:45Z 2009-06-04T00:00:49Z <p>I am hitting the same problem on a build machine. It works fine when I open the project with Visual Studio, but when I run mstest.exe it fails with the above error. It also fails on my local development machine when I run by command line. Process Monitor shows no attempts to even locate the file by mstest.exe.</p> <p>The build machine is 32-bit, my local machine is 64-bit. The assembly we are using is the one from the Fluent NHibernate trunk.</p> <p>UPDATE: Figured it out - mstest.exe wasn't copying all of the assemblies when it was being run from the command line. I updated the localtestrun.config to include them under Deployment. Not sure why the behaviour is different from the IDE and command line test runner.</p>