32 lines
1.4 KiB
XML
32 lines
1.4 KiB
XML
<?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>
|