使用 Tableadapters 填充数据集不起作用

Filling datasets by using Tableadapters is not working

我必须使用 Tableadopter 开发项目。实际上有效,但是当我更改 SQL 服务器密码时,它不起作用。所以我的项目完全损坏了我最后一年的项目提交日期是 6 月 10.Suddenly 我为此苦苦挣扎请帮助我....

更新:

  private void Form_admin_Load(object sender, EventArgs e)
    {
        con = new SqlConnection("Data Source=LAB-2\SQLEXPRESS; Initial Catalog=HRPay; Persist Security Info = True; User ID =smart; Password =smart123");
        con.Open();


        // TODO: This line of code loads data into the 'hRPayDataSet8.EmployeeQulaification' table. You can move, or remove it, as needed.
        this.employeeQulaificationTableAdapter1.Fill(this.hRPayDataSet8.EmployeeQulaification);
    }

将您的 SQL 密码改回 "Smart123"。

或者将连接字符串中的密码更改为新的 SQL 服务器密码。