Using an External Database


You may choose to use an external database instead of the supplied SQL Server database. If so, the HIBERNATE.CFG file (located at C:\inetpub\wwwroot\XcaliburW\bin) must be updated.

<!-- FOR MYSQL -->
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.MySqlDataDriver</property>
<property name="connection.connection_string">Server=127.0.0.1;Database=wpweb;User=root;Pwd=root;</property>
<property name="dialect">NHibernate.Dialect.MySQL5Dialect</property>
<!-- END MYSQL -->