Hello. I have this problem with starting connection with db. I have:
public Configuration config; ISessionFactory factory; ISession session;
config = new Configuration(); config.Configure(); config.AddAssembly("HelloWorld");
//Budujemy fabryke factory = config.BuildSessionFactory();
//Budujemy sesje session = factory.OpenSession();
And i get exception in config.Configure();
it is Hibernate Config Exception
I think it is coused by hibernate.cfg.xml file, becouse if i change anything there or even delete it, error is always the same, its like VS doesn't see config file, it looks like this:
<?xml version="1.0" encoding="iso-8859-1"?> <hibernate-configuration xmlns="urn:nhibernate-configuration-2.0"> <session-factory> <property name="dialect">
NHibernate.Dialect.MySQLDialect </property> <property name="connection.provider"> NHibernate.Connection.DriverConnectionProvider</property> <property name="connection.driver_class"> NHibernate.Driver.MySqlDataDriver</property> <property name="connection.connection_string">Server=localhost;Database=hello;User ID=root;Password=</property> </session-factory> </hibernate-configuration>
What to do?
|