I am using Visual Basic 2010 and MySQL database
I have textboxes on my form and I was able to display the records from my database by MANUALLY adding my MySQL database on the Datasources, dragged the control on my form and the data were displayed on the textboxes. In other words, data on my MySQL DB are BOUND to my textboxes without using any code.
In adding / saving data here is the code that I used (the one that worked for me)
Private Sub cmd_add_Click(sender As System.Object, e As System.EventArgs) Handles cmd_add.Click
Dim SQLCommand As New MySqlCommand
Dim connection As New MySqlConnection("Server = localhost; User Id = root; Password = password; Database = maindb")
If cmd_add.Text = "ADD" Then
cmd_add.Text = "SAVE"
EnableControls()
ClearTextboxes()
lb_age.Visible = False
Else
cmd_add.Text = "ADD"
lb_age.Visible = True
connection.Open()
SQLCommand.CommandText = "INSERT INTO maindb.mytable (ACCT_NAME,EMP_NUM) VALUES ('" & tb_acctname.Text & "','" & tb_empnum.Text & "')"
SQLCommand.Connection = connection
SQLCommand.ExecuteNonQuery()
MsgBox("Record Succesfully added")
connection.Close()
End If
End Sub
My issue is after the application is done with saving the data, I would need to reload my form so that I would be able to navigate and see the records from my database. If I won't reload, I will just get stuck on the option to click "ADD" command button to add another record. I cannot navigate or do any other stuff. When I press the navigation buttons like "FIRST, PREV, NEXT,LAST" it's not showing any record from my database.
How would I resolve this? If my database is bound to the textboxes on my form, why is it that they are not visible after I save the new record eventhough I am connected and using the same database? I am confused. Please help me.