From: <dav...@us...> - 2009-02-01 20:55:33
|
Revision: 4010 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4010&view=rev Author: davybrion Date: 2009-02-01 20:55:26 +0000 (Sun, 01 Feb 2009) Log Message: ----------- added some (commented) settings to the config file for MySQL testing Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Test/App.config Modified: trunk/nhibernate/src/NHibernate.Test/App.config =================================================================== --- trunk/nhibernate/src/NHibernate.Test/App.config 2009-01-31 14:56:37 UTC (rev 4009) +++ trunk/nhibernate/src/NHibernate.Test/App.config 2009-02-01 20:55:26 UTC (rev 4010) @@ -57,11 +57,15 @@ <!-- This is the System.Data.dll provider for MSSQL Server --> <property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property> - <property name="connection.connection_string"> - Server=(local);initial catalog=nhibernate;Integrated Security=SSPI - </property> - <property name="show_sql">false</property> - <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property> + <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property> + <property name="connection.connection_string">Server=(local);initial catalog=nhibernate;Integrated Security=SSPI</property> + + <!-- This is for running the tests with a MySQL database --> + <!--<property name="connection.driver_class">NHibernate.Driver.MySqlDataDriver</property> + <property name="dialect">NHibernate.Dialect.MySQL5Dialect</property> + <property name="connection.connection_string">Server=localhost;Database=nhibernate;User ID=nhibernate;Password=nhibernate</property>--> + + <property name="show_sql">false</property> <property name="use_outer_join">true</property> <property name="command_timeout">444</property> <property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |