【CodeSmith】The System.Data.SQLite library is not installed on this computer,不能使用SQLite解决办法

简介: 【CodeSmith】The System.Data.SQLite library is not installed on this computer,不能使用SQLite解决办法

1、出现问题原因

1)System.Data.SQLite 尚未安装在您的计算机上

2)System.Data.SQLite 尚未正确配置

2、下载并安装System.Data.Sqlite

【注意】CodeSmith Generator 被编译为 AnyCPU。这意味着当您在Visual Studio外部启动Generator时,Generator将作为64位进程运行。如果从 Visual Studio(32 位进程)中生成,则 CodeSmith 生成器库将作为 32 位进程运行。

了解这一点非常重要,因为它决定了在运行时解析哪些架构提供程序依赖项。

1)第一步是确保下载并安装最新的 .NET Framework 4.0 版本的

下载地址:system.data.sqlite

① 如果您运行的是 64 位版本的 Windows,请同时安装 32 位和 64 位版本;

② 如果在此处安装旧版System.Data.Sqlite ,则可以跳过以下配置步骤。旧版本通过将条目添加到您的计算机.config来配置自身

3、配置System.Data.Sqlite

1)更新machine.config文件,将SQLite提供程序添加到DbProviderFactories元素:

<system.data>
  <DbProviderFactories>
    <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>

image.gif

2).NET Framework 4.0 machine.config 可以在这里找到:

    • %windir%\Microsoft.NET\Framework\v4.0.30319\Config\machine.config
    • %windir%\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config

    接下来,您需要将通过 System.Data.SQLite 安装程序安装的 64 位或 32 位 SQLite 程序集复制到 CodeSmith Generators bin 文件夹。此 bin 文件夹可以在您安装 CodeSmith 生成器的位置找到。

    注意事项:

    ① 如果您使用的是64位窗口,则应复制64位SQLite程序集;

    ② 若遇到“你没有权限在此位置中保存文件”,可参考链接你没有权限在此位置中保存文件(win10亲自测试)

    ③ 关于需要拷贝的文件到CodeSmith Generators bin文件夹,这个链接有说明CodeSmith连接SQLite配置

    4、参考链接

    ① 官方解答

    ② 下载文件

    ③ 修改配置

    ④ 拷贝DLL

    以上就是【CodeSmith】The System.Data.SQLite library is not installed on this computer,不能使用SQLite解决办法的介绍,做此记录,如有帮助,欢迎点赞关注收藏!

    目录
    相关文章
    |
    7月前
    |
    Go C语言
    安装go-sqlite3包时报exec: "gcc": executable file not found in %PATH%解决办法
    安装go-sqlite3包时报exec: "gcc": executable file not found in %PATH%解决办法
    282 0
    |
    数据库管理 Windows
    【CodeSmith】The System.Data.SQLite library is not installed on this computer,不能使用SQLite解决办法
    【CodeSmith】The System.Data.SQLite library is not installed on this computer,不能使用SQLite解决办法
    41 0
    |
    关系型数据库 MySQL Linux
    linux上安装mysqlclient报错的原因 (ERROR: No matching distribution found for mysqlclient)
    linux上安装mysqlclient报错的原因 (ERROR: No matching distribution found for mysqlclient)
    532 0
    【问题记录】启动 Navicat 的过程中,遇到:Missing required library sqlite.dll,998
    【问题记录】启动 Navicat 的过程中,遇到:Missing required library sqlite.dll,998
    【问题记录】启动 Navicat 的过程中,遇到:Missing required library sqlite.dll,998
    |
    Oracle 关系型数据库 数据库
    navicat提示oracle library is not loaded
    navicat提示oracle library is not loaded
    3676 0
    navicat提示oracle library is not loaded
    |
    C++ Python
    Python安装库的时候出现Error: Microsoft Visual C++ 10.0 is required (Unable to find vcvarsall.bat)
    终于建了一个自己个人小站:https://huangtianyu.gitee.io,以后优先更新小站博客,欢迎进站,O(∩_∩)O~~ 折腾了很久,在StackFlow里面找到了答案。原文解决方案的地址是:点击打开链接 下面给出翻译: 打开环境变量,添加如下变量: 变量名:VS120COMNTO...
    2731 0
    下一篇
    DataWorks