本帖最后由 李礼彬 于 2013-5-13 18:26 编辑
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Data.Common;
- using System.Data.SQLite;
- namespace ConsoleApplication1
- { class Program
- { static void Main(string[] args)
- {
- try
- {
- SQLiteFactory factory = new SQLiteFactory();
- }
- catch (Exception exp)
- {
- Console.WriteLine(exp.Message);
- }
- }
- }
- }
复制代码我直接通过文件引用了SQLite,SQLite的版本信息见附图
异常信息如下
“System.Data.SQLite.SQLiteFactory”的类型初始值设定项引发异常。
未处理的异常: System.TypeInitializationException: “System.Data.SQLite.SQLiteFa ctory”的类型初始值设定项引发异常。 ---> System.DllNotFoundException: 无法加载 D LL“SQLite.Interop.dll”: 找不到指定的模块。 (异常来自 HRESULT:0x8007007E)。 在 System.Data.SQLite.UnsafeNativeMethods.sqlite3_config(Int32 op, SQLiteLogC allback func, IntPtr pvUser) 在 System.Data.SQLite.SQLite3.StaticIsInitialized() 在 System.Data.SQLite.SQLiteLog.Initialize() 在 System.Data.SQLite.SQLiteFactory..cctor() --- 内部异常堆栈跟踪的结尾 --- 在 System.Data.SQLite.SQLiteFactory.Finalize() 请按任意键继续. . . 求指导
|