Sha256: c8ea0b19a39601c53bf68cf44bbe3457161c615bfb9ef063c9f44629c6e08c0b

Contents?: true

Size: 1.45 KB

Versions: 3

Compression:

Stored size: 1.45 KB

Contents

<?xml version="1.0" encoding="utf-8" ?>
<!--
To work with FireBird you must add the assembly binding for FirebirdClient ADO.NET 2.0 DataProvider
to your App.config.
Example:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
	<qualifyAssembly partialName="FirebirdSql.Data.FirebirdClient" fullName="FirebirdSql.Data.FirebirdClient, Version=2.0.1.0, Culture=neutral, PublicKeyToken=3750abcc3150b00c" />
</assemblyBinding>
</runtime>
-->
<!-- 
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.
-->
<hibernate-configuration  xmlns="urn:nhibernate-configuration-2.2" >
	<session-factory name="NHibernate.Test">
		<property name="connection.driver_class">NHibernate.Driver.FirebirdClientDriver</property>
		<property name="connection.connection_string">
			Server=localhost;
			Database=C:\nhibernate.fdb;
			User=SYSDBA;Password=masterkey
		</property>
		<property name="show_sql">false</property>
		<property name="dialect">NHibernate.Dialect.FirebirdDialect</property>
		<property name="command_timeout">60</property>
		<property name="query.substitutions">true 1, false 0, yes 1, no 0</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/FireBird.cfg.xml
nhibernate-2.1.2.4000 docs/Configuration_Templates/FireBird.cfg.xml
nhibernate-2.1.0.4000 docs/Configuration_Templates/FireBird.cfg.xml