Sha256: fb6c50cf9a7d535f4fa71cf3d6604bd4e192671037429a2fe3cc2cd28c0a55db

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

<?xml version="1.0" encoding="utf-8"?>
<!-- 
This template was written to work with NHibernate.Test.
Copy the template to your NHibernate.Test project folder and rename it in hibernate.cfg.xml and change it 
for your own use before compile tests in VisualStudio.
-->
<!-- This is the System.Data.dll provider for SQL Server -->
<hibernate-configuration  xmlns="urn:nhibernate-configuration-2.2" >
	<session-factory name="NHibernate.Test">
		<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="adonet.batch_size">10</property>
		<property name="show_sql">false</property>
		<property name="dialect">NHibernate.Dialect.MsSql2000Dialect</property>
		<property name="use_outer_join">true</property>
		<property name="command_timeout">60</property>
		<property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
		<property name="proxyfactory.factory_class">NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu</property>
	</session-factory>
</hibernate-configuration>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
nhibernate-3.0.0.1002alpha2 docs/Configuration_Templates/MSSQL.cfg.xml
nhibernate-2.1.2.4000 docs/Configuration_Templates/MSSQL.cfg.xml
nhibernate-2.1.0.4000 docs/Configuration_Templates/MSSQL.cfg.xml