.net – 什么原因导致System.BadImageFormatException时构造System.Data.SQLite.SQLiteConnection

前端之家收集整理的这篇文章主要介绍了.net – 什么原因导致System.BadImageFormatException时构造System.Data.SQLite.SQLiteConnection前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经破碎代码到尽可能小的语句:
Dim cn As System.Data.sqlite.sqliteConnection

当从WinForm应用程序调用代码时,我得到以下错误

System.BadImageFormatException: Could
not load file or assembly
‘System.Data.sqlite,Version=1.0.65.0,
Culture=neutral,
PublicKeyToken=db937bc2d44ff139’ or
one of its dependencies. An attempt
was made to load a program with an
incorrect format. File name:
‘System.Data.sqlite,
PublicKeyToken=db937bc2d44ff139’

然而从MS单元测试I调用同一段代码没有得到错误加上完整的代码集工作原理。

sqlLite包含非托管代码,您不能在64位操作系统上运行它,除非部署64位版本。快速修复:项目属性,构建选项卡,平台目标= x86。

猜你在找的Sqlite相关文章