一个新手.net开发人员并且在我的code.code中遇到了一些问题被编写为在具有" personid"的sql server中的现有表(person)中插入记录。和"名称"作为两列。我想通过我的vb.net代码,特别是通过datatable和datset在现有表中插入一条新记录,并希望在表中看到相同的更改。下面是代码..谢谢
Dim ds As New DataSet
Dim dt As New DataTable
Dim Str As String = "select*from person"
conn.Open()
Dim com As New SqlCommand(Str, conn)
Dim da As New SqlDataAdapter(com)
da.Fill(dt)
ds.Tables.Add(dt)
Dim dr As DataRow = ds.Tables("person").NewRow()
dr("personID") = 1
dr("name") = 'xyz'
ds.Tables("person").Rows.Add(dr)
ds.AcceptChanges()