From: <jul...@us...> - 2010-07-19 14:22:44
|
Revision: 5009 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5009&view=rev Author: julian-maughan Date: 2010-07-19 14:22:36 +0000 (Mon, 19 Jul 2010) Log Message: ----------- NHibernate.Driver.SQLite20Driver should be used. SQLiteDriver is for an old .NET 1.x version. Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Config.Templates/SQLite.cfg.xml Modified: trunk/nhibernate/src/NHibernate.Config.Templates/SQLite.cfg.xml =================================================================== --- trunk/nhibernate/src/NHibernate.Config.Templates/SQLite.cfg.xml 2010-07-18 15:05:47 UTC (rev 5008) +++ trunk/nhibernate/src/NHibernate.Config.Templates/SQLite.cfg.xml 2010-07-19 14:22:36 UTC (rev 5009) @@ -6,7 +6,7 @@ --> <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2" > <session-factory name="NHibernate.Test"> - <property name="connection.driver_class">NHibernate.Driver.SQLiteDriver</property> + <property name="connection.driver_class">NHibernate.Driver.SQLite20Driver</property> <property name="connection.connection_string"> Data Source=nhibernate.db;Version=3 </property> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |