我正在使用sqlite开发一个应用程序作为我的windows ce mobile上的数据库。当我尝试打开连接时,我得到一个异常,因为MissingMethodException。 我已经添加了sqlite和interop dll,但我仍然收到了消息。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SQLite;
namespace AGDeviceSample
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
try {
SQLiteConnection conn = new SQLiteConnection("Data Source=agm.sqlite;Version=3;");
conn.Open();
}catch(Exception e2){
MessageBox.Show(" " + e2.Message);
}
}
}
}