From: <fab...@us...> - 2009-01-08 16:21:32
|
Revision: 3980 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=3980&view=rev Author: fabiomaulo Date: 2009-01-08 16:21:22 +0000 (Thu, 08 Jan 2009) Log Message: ----------- Minor 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-05 23:22:36 UTC (rev 3979) +++ trunk/nhibernate/src/NHibernate.Test/App.config 2009-01-08 16:21:22 UTC (rev 3980) @@ -123,7 +123,7 @@ </logger> <logger name="NHibernate.SQL"> - <level value="DEBUG" /> + <level value="OFF" /> </logger> <logger name="NHibernate.Tool.hbm2ddl.SchemaExport"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dav...@us...> - 2009-01-18 19:57:26
|
Revision: 3997 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=3997&view=rev Author: davybrion Date: 2009-01-18 19:57:19 +0000 (Sun, 18 Jan 2009) Log Message: ----------- corrected the connection string in the test project's config file 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-12 19:05:10 UTC (rev 3996) +++ trunk/nhibernate/src/NHibernate.Test/App.config 2009-01-18 19:57:19 UTC (rev 3997) @@ -58,7 +58,7 @@ <!-- 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)\sqlexpress;initial catalog=nhibernate;Integrated Security=SSPI + Server=(local);initial catalog=nhibernate;Integrated Security=SSPI </property> <property name="show_sql">false</property> <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |
From: <fab...@us...> - 2009-02-02 20:48:58
|
Revision: 4012 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4012&view=rev Author: fabiomaulo Date: 2009-02-02 20:48:55 +0000 (Mon, 02 Feb 2009) Log Message: ----------- revert r4010 (each one should write his own hibernate.cfg.xml without change the app.config) 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-02-02 20:28:46 UTC (rev 4011) +++ trunk/nhibernate/src/NHibernate.Test/App.config 2009-02-02 20:48:55 UTC (rev 4012) @@ -57,20 +57,16 @@ <!-- This is the System.Data.dll provider for MSSQL Server --> <property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property> - <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property> - <property name="connection.connection_string">Server=(local);initial catalog=nhibernate;Integrated Security=SSPI</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="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> <property name="adonet.wrap_result_sets">false</property> - + <property name="proxyfactory.factory_class">NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu</property> </session-factory> </hibernate-configuration> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fab...@us...> - 2009-05-10 14:55:58
|
Revision: 4275 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4275&view=rev Author: fabiomaulo Date: 2009-05-10 14:55:50 +0000 (Sun, 10 May 2009) Log Message: ----------- New parser as default for ours tests 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-05-10 14:30:22 UTC (rev 4274) +++ trunk/nhibernate/src/NHibernate.Test/App.config 2009-05-10 14:55:50 UTC (rev 4275) @@ -60,6 +60,7 @@ <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property> <property name="connection.connection_string">Server=(local);initial catalog=nhibernate;Integrated Security=SSPI</property> + <property name="query.factory_class">NHibernate.Hql.Ast.ANTLR.ASTQueryTranslatorFactory, NHibernate</property> <property name="show_sql">false</property> <property name="use_outer_join">true</property> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fab...@us...> - 2009-05-23 05:01:50
|
Revision: 4368 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4368&view=rev Author: fabiomaulo Date: 2009-05-23 05:01:37 +0000 (Sat, 23 May 2009) Log Message: ----------- Activated the batcher as default for our tests 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-05-23 04:59:13 UTC (rev 4367) +++ trunk/nhibernate/src/NHibernate.Test/App.config 2009-05-23 05:01:37 UTC (rev 4368) @@ -52,6 +52,7 @@ Enumeration documentation. Use the member names - not the values. --> + <property name="adonet.batch_size">10</property> <property name="connection.isolation">ReadCommitted</property> <property name="format_sql">true</property> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fab...@us...> - 2010-09-24 04:51:42
|
Revision: 5212 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5212&view=rev Author: fabiomaulo Date: 2010-09-24 04:51:37 +0000 (Fri, 24 Sep 2010) Log Message: ----------- Ups! Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Test/App.config Modified: trunk/nhibernate/src/NHibernate.Test/App.config =================================================================== --- trunk/nhibernate/src/NHibernate.Test/App.config 2010-09-24 04:50:50 UTC (rev 5211) +++ trunk/nhibernate/src/NHibernate.Test/App.config 2010-09-24 04:51:37 UTC (rev 5212) @@ -126,7 +126,7 @@ </logger> <logger name="NHibernate.SQL"> - <level value="DEBUG" /> + <level value="OFF" /> </logger> <logger name="NHibernate.AdoNet.AbstractBatcher"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jul...@us...> - 2011-02-25 09:49:38
|
Revision: 5398 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5398&view=rev Author: julian-maughan Date: 2011-02-25 09:49:31 +0000 (Fri, 25 Feb 2011) Log Message: ----------- Reversed an inadvertent change that occurred in the merging of the ReadOnlyEntities branch (r5397). Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Test/App.config Modified: trunk/nhibernate/src/NHibernate.Test/App.config =================================================================== --- trunk/nhibernate/src/NHibernate.Test/App.config 2011-02-24 17:11:05 UTC (rev 5397) +++ trunk/nhibernate/src/NHibernate.Test/App.config 2011-02-25 09:49:31 UTC (rev 5398) @@ -23,13 +23,6 @@ fullName="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> </assemblyBinding> - <!-- The assembly binding for FirebirdClient ADO.NET 2.0 DataProvider --> - <!-- --> - <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> - <qualifyAssembly partialName="FirebirdSql.Data.FirebirdClient" fullName="FirebirdSql.Data.FirebirdClient, Version=2.1.0.0, Culture=neutral, PublicKeyToken=3750abcc3150b00c" /> - </assemblyBinding> - <!-- --> - </runtime> <!-- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |