Skip to content

Commit 0a4513f

Browse files
committed
Simplifications to example config templates, taking into account configuration requirement changes.
1 parent f5f2f3c commit 0a4513f

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/NHibernate.Config.Templates/MSSQL.cfg.xml

+1-5
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ for your own use before compile tests in VisualStudio.
1111
<property name="connection.connection_string">
1212
Server=(local);initial catalog=nhibernate;Integrated Security=SSPI
1313
</property>
14-
<property name="adonet.batch_size">10</property>
15-
<property name="show_sql">false</property>
16-
<property name="dialect">NHibernate.Dialect.MsSql2000Dialect</property>
17-
<property name="command_timeout">60</property>
18-
<property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
14+
<property name="dialect">NHibernate.Dialect.MsSql2008Dialect</property>
1915
</session-factory>
2016
</hibernate-configuration>

src/NHibernate.Config.Templates/SQLite.cfg.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ for your own use before compile tests in VisualStudio.
88
<session-factory name="NHibernate.Test">
99
<property name="connection.driver_class">NHibernate.Driver.SQLite20Driver</property>
1010
<property name="connection.connection_string">
11-
Data Source=nhibernate.db;Version=3
11+
Data Source=nhibernate.db
1212
</property>
1313
<property name="dialect">NHibernate.Dialect.SQLiteDialect</property>
14-
<property name="query.substitutions">true=1;false=0</property>
1514
</session-factory>
1615
</hibernate-configuration>

0 commit comments

Comments
 (0)