gpt4 book ai didi

mysql - 数据库不通过数据集和tableAdapter Vb .Net插入行

转载 作者:行者123 更新时间:2023-11-29 23:48:24 25 4
gpt4 key购买 nike

我正在尝试将新行插入学生表中,但它没有执行任何操作。这是我的代码:

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim stAdapter As New StudentSystemDBDataSetTableAdapters.studentsTableAdapter()
Dim stDataset As New StudentSystemDBDataSet()
Dim Row As StudentSystemDBDataSet.studentsRow
Row = stDataset.students.NewstudentsRow

Row.Student_no = "34"
Row.Title = "ert"
Row.Initials = "3434"
Row.Surname = "erwer"
Row.Address = "fgsfd"
Row.Postal_Code = "rwerwe"
Row.Birthdate = "gogid"
Row.Gender = "erwrwer"

stDataset.students.Rows.Add(Row)
stAdapter.Update(stDataset.students)
End Sub

最佳答案

UpdateCommandInsertCommand 和“DeleteCommand”控制数据的更新、插入和删除方式。这是参数化的 SQL,然后适配器使用它来保存更改。

如果您使用向导创建适配器,请再次运行它并注意使数据可更新的部分。它会为您创建这些,但您必须选中告诉它的框。

如果您没有使用向导,则还需要手动创建命令。

关于mysql - 数据库不通过数据集和tableAdapter Vb .Net插入行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25790189/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com