zoukankan      html  css  js  c++  java
  • Nhibernate和Sqlite数据库的使用

    hibernate.cfg.xml配置文件Sample:

    <?xml version="1.0" encoding="utf-8" ?>
    <hibernate-configuration  xmlns="urn:nhibernate-configuration-2.2" >
      <session-factory name="Rock">
        <!-- properties -->
        <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
        <property name="connection.driver_class">NHibernate.Driver.SQLite20Driver, NHibernate</property>
        <property name="connection.connection_string">Data Source=D:\Data\SQLite_DB\rock.db;Version=3</property>
        <property name="dialect">NHibernate.Dialect.SQLiteDialect, NHibernate</property>
        <property name="query.substitutions">true=1;false=0</property>
        <property name="proxyfactory.factory_class">NHibernate.ByteCode.LinFu.ProxyFactoryFactory, NHibernate.ByteCode.LinFu</property>
        <property name="show_sql">false</property>
        <property name="use_outer_join">true</property>
        <!--
                these are different than the values in app.config so I can verify these
                are being picked up
            -->
        <property name="command_timeout">444</property>
        <!-- mapping files -->
        <!-- are now optional
                <mapping file="ABC.hbm.xml" />
                <mapping resource="NHibernate.DomainModel.Simple.hbm.xml" assembly="NHibernate.DomainModel" />
            -->
      </session-factory>

    </hibernate-configuration>

     

    自动增加主Key的Mapping的Sample:

    <?xml version="1.0" encoding="utf-8" ?>
    <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" default-lazy="false" namespace="Rock.Data.Model" assembly="Rock.Data.Model">
        <class name="PasswordMaster,Rock.Data.Model" table="PasswordMaster" lazy="false">

            <!-- Primary Key(s) -->
            <id name="Id" column="PwdKey" type="Int32" unsaved-value="0">
               <generator class="increment"/>
            </id>
            <!-- Properties -->
            <property column="PwdName" type="String" name="PwdName" not-null="true" length="50" />
            <property column="PwdID" type="String" name="Pwdid" not-null="true" length="50" />
            <property column="PwdValue" type="String" name="PwdValue" not-null="true" length="50" />
            <property column="WebSite" type="String" name="WebSite" length="50" />
            <property column="Q1" type="String" name="Q1" length="50" />
            <property column="A1" type="String" name="A1" length="50" />
            <property column="Q2" type="String" name="Q2" length="50" />
            <property column="A2" type="String" name="A2" length="50" />
            <property column="Q3" type="String" name="Q3" length="50" />
            <property column="A3" type="String" name="A3" length="50" />
            <property column="CreateDate" type="DateTime" name="CreateDate" not-null="true" />
            <property column="Remark" type="String" name="Remark" length="255" />
        </class>
    </hibernate-mapping>

     

    当然项目要引用System.Data.Sqlite.DLL这个文件。

  • 相关阅读:
    [ZT].Net中動態建立和調用WebServices的方法
    英文符号读法整理
    [ZT]SQL Server 的事务日志意外增大或充满的处理方法
    [ZT]Asp.net發布至英文服务器后出现的日期格式问题
    [ZT]如何取得客户端的Windows登录用户名?
    囧!一个盗版用户和微软客服的通话记录
    [轉帖]x.509证书在WCF中的应用(CS篇)
    [原創]關於VS“無法辨認的逸出序列”的錯誤分析和解決方法
    【原創】文件系統目錄文件快速複製轉移工具
    SQL2000/SQL2005導入導出存儲過程圖解
  • 原文地址:https://www.cnblogs.com/rockniu/p/1592554.html
Copyright © 2011-2022 走看看