zoukankan      html  css  js  c++  java
  • Window2008 R2(64位)使用codesmith连接Sqlite

    ①打开C:WindowsMicrosoft.NETFramework64v4.0.30319Config目录,找到machine.config文件新增

    <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite"  type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite"/>如下所示:

    	<system.data>
    		<DbProviderFactories>
    			<add name="Microsoft SQL Server Compact Data Provider" invariant="System.Data.SqlServerCe.3.5" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=3.5.1.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/>
    			<add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite"  type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite"/>
    		</DbProviderFactories>
    	</system.data>

    ②登陆官方网址 下载Sqlite  .NET Framework 4.0版本如下图所示:


    ③下载完成后安装,打开C:Program FilesSystem.Data.SQLite2010in,复制System.Data.SQLite.dll和SQLite.Interop.dll到codesmith安装目录,如C:Program Files (x86)CodeSmithv7.0in,然后重启codesmith7,正常使用



  • 相关阅读:
    centos 安装mysql
    mysql中文排序
    在Centos中yum安装和卸载软件的使用方法
    gcc升级方法
    tar命令
    wget命令
    php7安装及和php5的共存
    PHP SESSION 保存到数据库
    setTimeout延时0毫秒的作用和问题
    css display visibility
  • 原文地址:https://www.cnblogs.com/smartsmile/p/6234149.html
Copyright © 2011-2022 走看看