C# - 使用 WPF 连接到 Access MDB 文件(ConnectionString 属性 尚未初始化)

C# - Connecting to an Access MDB file using WPF (The ConnectionString Property has not been initialized)

首先让我说我只编写 C# 代码大约 3-4 个月。

我试图对如何在 Visual studio 中访问数据库有一个基本的了解,以便我可以插入、更新和删除数据。我尝试了各种不同的测试,我想我得出的结论是 OleDb 不太喜欢 WPF 的某些方面。我创建了 2 个相同的项目,一个使用 Windows Forms,另一个使用 WPF。该项目的 Windows Forms 版本工作得非常好,但是 WPF 项目没有,给我错误

"The ConnectionString Property has not been initialized"

我不知道如何解决这个问题。我已经在互联网上搜索了 12 个小时的大部分时间,但仍然一无所获。

这是 WPF 文件的原始代码。与Windows表单代码相同

public partial class MainWindow : Window
{

    OleDbCommand cmd = new OleDbCommand();
    OleDbConnection cn = new OleDbConnection();
    OleDbDataReader dr;

    public MainWindow()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {

        cn.ConnectionString = @"Provider = Microsoft.Jet.OLEDB.4.0; Data Source = C:\Users\MarkB\Documents\testing.mdb";
        cmd.Connection = cn;
        loaddata();
    }
    private void loaddata()
    {
        listBox1.Items.Clear();
        listBox2.Items.Clear();
        listBox3.Items.Clear();
        listBox4.Items.Clear();
        try
        {
            string q = "select * from info";
            cmd.CommandText = q;
            cn.Open();
            dr = cmd.ExecuteReader();
            if(dr.HasRows)
            {
                while(dr.Read())
                {
                    listBox1.Items.Add(dr[0].ToString());
                    listBox2.Items.Add(dr[1].ToString());
                    listBox3.Items.Add(dr[2].ToString());
                    listBox4.Items.Add(dr[3].ToString());
                }
            }
            dr.Close();
            cn.Close();
        }
        catch(Exception e)
        {
            cn.Close();
            MessageBox.Show(e.Message.ToString());
        }
    }

    private void listBox2_SelectedIndexChanged(object sender, EventArgs e)
    {
        ListBox l = sender as ListBox;
        if(l.SelectedIndex != -1)
        {
            listBox1.SelectedIndex = l.SelectedIndex;
            listBox2.SelectedIndex = l.SelectedIndex;
            listBox3.SelectedIndex = l.SelectedIndex;
            listBox4.SelectedIndex = l.SelectedIndex;
        }

    }

    private void button1_Click(object sender, EventArgs e)
    {

        if ((textBox1.Text!="") && (textBox2.Text!=""))
        {
            string q ="insert into info (firstname,surname,address) values ('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text +"')";
            dosomething(q);
            textBox1.Text = null;
            textBox2.Text = null;
            textBox3.Text = null;
        }
    }

    private void dosomething(String q)
    {
        try
        {
            cn.Open();
            cmd.CommandText = q;
            cmd.ExecuteNonQuery();
            MessageBox.Show("Data Saved");
            cn.Close();
            loaddata();
        }
        catch (Exception e)
        {
            cn.Close();
            MessageBox.Show(e.Message.ToString());
        }
    }

    private void button2_Click(object sender, EventArgs e)
    {
        if(listBox1.SelectedIndex !=-1)
            {
            string q = "delete from info where id =" + listBox1.SelectedItem.ToString();
            dosomething(q);
        }
    }
}

如果有人能提供帮助,我们将不胜感激。我知道问题一定出在代码的连接方面

该错误表明在将连接字符串传递给连接之前的某个时刻正在调用连接。第一次实例化 OleDbConnection 对象时,可以尝试将连接字符串设置在顶部:

OleDbConnection cn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\Users\MarkB\Documents\testing.mdb"); 

然后在每次需要时创建一个新的 cmd 对象(而不是在顶部一次):

string query = "select * from somethingorother";
OleDbCommand cmd = new OleDbCommand(query, cn);