Dim myQuery = "UPDATE table1 SET data= CONCAT (data,'" & 开发者_StackOverflow中文版vbCrLf & "[ " & Date.Now() & " ]" & " " & "[" & getCN() & "]" & " " & txtTelenotes.Text & "[ item1 ]" & "') WHERE id='" & txtID.Text & "'"
myCommand.Connection = conn
myCommand.CommandText = myQuery
myAdapter.SelectCommand = myCommand
Dim myData As MySqlDataReader
myData = myCommand.ExecuteReader()
txtTelenotes.Text = ""
dgvREcord.Refresh()
I tried refreshing the DataGridView using:
dgvREcord.Refresh()
but it does not load the changes from the database.
Close your data connection and re-open it.
I have a similar app but use tableadapters instead so mine looks like:
Me.VictimsTableAdapter.Dispose()
Me.VictimsTableAdapter.Fill(Me.VicsDataSet.Victims)
精彩评论