English 中文(简体)
VB.NET NHibernate Configuation
原标题:VB.NET NHibernate Configuration

我似乎找不到任何象样(和最近)的NHibernator榜样。 视觉基础网,2010年快车。 但 我一直在试图把我所能做的一切混在一起。

然而,Ialways似乎有这一错误。

A first chance exception of type  System.IO.FileNotFoundException  occurred in System.Xml.dll
A first chance exception of type  NHibernate.Cfg.HibernateConfigException  occurred in NHibernate.dll
A first chance exception of type  NHibernate.Cfg.HibernateConfigException  occurred in NHibernate.dll
a: An exception occurred during configuration of persistence layer.

我有nhibernator.cfg.xml,载于项目根基,包括:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">

  <!-- For simplicity, the NHibernate configuration is stored in this file.
  It must be named hibernate.cfg.xml and marked in Visual Studio to be copied
  to the output folder.  -->

  <session-factory>

    <!-- By default NHibernate is aggressive in closing connections between
    SQL statments.  This unfortunately causes a problem when reading ID
    numbers assigned by Access (e.g. in AutoNumber fields).  See comments
    in the Test 1 section of Program.cs. -->

    <property name="hibernate.connection.release_mode">on_close</property>

    <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
    <property name="dialect">NHibernate.JetDriver.JetDialect, NHibernate.JetDriver</property>
    <property name="connection.driver_class">NHibernate.JetDriver.JetDriver, NHibernate.JetDriver</property>

    <!-- The Sample.mdb file is located in the folder containing the
    solution file.  This is three folders upward.  Relative paths
    are supported in Jet connection strings.  -->

    <property name="connection.connection_string">Provider=Microsoft.ACE.OLEDB.12.0;Data Source=database.accdb</property>
  </session-factory>
</hibernate-configuration>

Any help and insight is appreciated.

最佳回答

我有Nhibernator.cfg.xml,是包含以下内容的项目根基:

我认为,你希望以“条码”命名。 否则,该组合就把新档案放在一起。

问题回答

档案是否准备复制到产出夹? 它在演播室视力学中的特性。 您应永远照抄。





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签