Added SQLite status storage
[pithos-ms-client] / trunk / packages / NHibernate.3.1.0.4000 / lib / Net35 / NHibernateXmlConfigurationTemplates / MySql.cfg.xml
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 ByteFX.Data.dll provider for MySql -->
8 <hibernate-configuration  xmlns="urn:nhibernate-configuration-2.2" >
9         <session-factory name="NHibernate.Test">
10                 <property name="connection.driver_class">NHibernate.Driver.MySqlDataDriver</property>
11                 <property name="connection.connection_string">
12                         Database=test;Data Source=someip;User Id=blah;Password=blah
13                 </property>
14                 <property name="dialect">NHibernate.Dialect.MySQLDialect</property>
15                 <property name="proxyfactory.factory_class">NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu</property>
16         </session-factory>
17 </hibernate-configuration>