This was fantastic however your TRY CATCH needs to be improved as follows Try Dim sql As String = "INSERT INTO rippingresults (UID,RipPath,StartTime,FinishTime,Result) VALUES (NULL,'PATH','2024-06-11 13:27:59.000000','2024-06-11 14:27:59.000000','0')" conn.Open() command = New MySqlCommand(sql, conn) reader = command.ExecuteReader Label1.Text = "SUCCESS" Catch ex As MySqlException MsgBox(ex.Message.ToString) Finally conn.Close() End Try you are missing a FINALLY command.
Thank you so much for your teaching, very clear and concise. God bless you
Thank you for this one mate, you got me back to exploring basic crud after all that programming trauma n_n
Welcome
please make all crud operation video similarly like that
This was fantastic however your TRY CATCH needs to be improved as follows
Try
Dim sql As String = "INSERT INTO rippingresults (UID,RipPath,StartTime,FinishTime,Result) VALUES (NULL,'PATH','2024-06-11 13:27:59.000000','2024-06-11 14:27:59.000000','0')"
conn.Open()
command = New MySqlCommand(sql, conn)
reader = command.ExecuteReader
Label1.Text = "SUCCESS"
Catch ex As MySqlException
MsgBox(ex.Message.ToString)
Finally
conn.Close()
End Try
you are missing a FINALLY command.