Files
BeWoPlaner/BeWoChatServer/Multitenancy/debugMySQL.config

19 lines
839 B
Plaintext
Raw Normal View History

<?xml version="1.0"?>
<configuration>
<configSections>
<section name="hibernate-configuration" type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate" />
</configSections>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.0">
<session-factory xmlns='urn:nhibernate-configuration-2.2'>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.MySqlDataDriver</property>
<property name="connection.connection_string">Server=localhost;Password=test;User ID=BeWoUser;Initial Catalog=bewodemo</property>
<property name="dialect">NHibernate.Dialect.MySQLDialect</property>
<mapping assembly="BeWo.Data" />
</session-factory>
</hibernate-configuration>
</configuration>