16 lines
758 B
XML
16 lines
758 B
XML
<?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.
|
|
-->
|
|
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2" >
|
|
<session-factory name="NHibernate.Test">
|
|
<property name="connection.driver_class">NHibernate.Driver.MySqlDataDriver</property>
|
|
<property name="connection.connection_string">
|
|
Database=nhibernate;Data Source=localhost;User Id=nhibernate;Password=;
|
|
Old Guids=True;
|
|
</property>
|
|
<property name="dialect">NHibernate.Dialect.MySQL5Dialect</property>
|
|
</session-factory>
|
|
</hibernate-configuration> |