Statistics
| Branch: | Revision:

root / trunk / packages / NHibernate.3.1.0.4000 / lib / Net35 / NHibernateXmlConfigurationTemplates / MSSQL.cfg.xml @ eeee29e3

History | View | Annotate | Download (1.2 kB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
This template was written to work with NHibernate.Test.
4
Copy the template to your NHibernate.Test project folder and rename it in hibernate.cfg.xml and change it 
5
for your own use before compile tests in VisualStudio.
6
-->
7
<!-- This is the System.Data.dll provider for SQL Server -->
8
<hibernate-configuration  xmlns="urn:nhibernate-configuration-2.2" >
9
        <session-factory name="NHibernate.Test">
10
                <property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
11
                <property name="connection.connection_string">
12
                        Server=(local);initial catalog=nhibernate;Integrated Security=SSPI
13
                </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="use_outer_join">true</property>
18
                <property name="command_timeout">60</property>
19
                <property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
20
                <property name="proxyfactory.factory_class">NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu</property>
21
        </session-factory>
22
</hibernate-configuration>