Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv860
Modified Files:
App.config
Log Message:
updated app.config to have a better logging level for the test during
the build.
Index: App.config
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/App.config,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** App.config 2 Apr 2004 14:35:44 -0000 1.4
--- App.config 23 Jul 2004 15:50:59 -0000 1.5
***************
*** 8,19 ****
<nhibernate>
<add
- key="hibernate.show_sql"
- value="true"
- />
- <add
key="hibernate.connection.provider"
value="NHibernate.Connection.DriverConnectionProvider"
/>
<add
--- 8,16 ----
<nhibernate>
<add
key="hibernate.connection.provider"
value="NHibernate.Connection.DriverConnectionProvider"
/>
+ <!-- This is the SqlClient configuration -->
<add
***************
*** 21,26 ****
value="NHibernate.Dialect.MsSql2000Dialect"
/>
- <!-- This is the SqlClient configuration -->
-
<add
key="hibernate.connection.driver_class"
--- 18,21 ----
***************
*** 29,67 ****
<add
key="hibernate.connection.connection_string"
! value="Server=localhost;initial catalog=nhibernate;User ID=someuser;Password=somepwd;Min Pool Size=2"
! />
!
! <!-- This is the ODBC configuration with MsSql2000 -->
! <!--
! <add
! key="hibernate.connection.driver_class"
! value="NHibernate.Driver.OdbcDriver"
! />
! <add
! key="hibernate.connection.connection_string"
! value="DRIVER={SQL Server};SERVER=localhost;DATABASE=nhibernate;UID=someuser;PWD=somepwd"
/>
! -->
! <!-- This is the OleDb configuration with MsSql2000 -->
<!--
<add
key="hibernate.connection.driver_class"
- value="NHibernate.Driver.OleDbDriver"
- />
- <add
- key="hibernate.connection.connection_string"
- value="Provider=SQLOLEDB.1;Persist Security Info=False;User ID=someuser;Password=somepwd;Initial Catalog=nhibernate;Data Source=localhost"
- />
- -->
-
- <!-- This is the ByteFX.Data.dll provider for MySql -->
- <!--
- <add
- key="hibernate.connection.driver_class"
value="NHibernate.Driver.ByteFXDataDriver"
/>
<add
key="hibernate.connection.connection_string"
! value="Database=test;Data Source=192.168.7.10;User Id=someuser;Password=somepwd"
/>
<add
--- 24,38 ----
<add
key="hibernate.connection.connection_string"
! value="Server=localhost;initial catalog=nhibernate;Integrated Security=SSPI"
/>
! <!-- This is the ByteFX.MySql.dll provider for MySql -->
<!--
<add
key="hibernate.connection.driver_class"
value="NHibernate.Driver.ByteFXDataDriver"
/>
<add
key="hibernate.connection.connection_string"
! value="Database=test;Data Source=someip;User Id=someuser;Password=somepwd"
/>
<add
***************
*** 72,75 ****
--- 43,47 ----
+
</nhibernate>
***************
*** 95,99 ****
<root>
! <priority value="ALL" />
<appender-ref ref="rollingFile" />
</root>
--- 67,71 ----
<root>
! <priority value="ERROR" />
<appender-ref ref="rollingFile" />
</root>
|