Ok, so you helped me check the database, now I need help inserting into it lol:
Ok, so my table name is "HWID" and my Column name is "IP". I want to insert "TestIP" into my table, but I get the sql exception error. I think it has to do with the "@IP" parenthesis. I don't know what to put there.
Code:
Using Command As MySqlCommand = Connection.CreateCommand
Try
Command.CommandText = "INSERT INTO HWID (111) VALUES (@IP)"
Command.Parameters.AddWithValue("@IP", "TestIP")
Command.ExecuteNonQuery()
Catch ex As MySqlException
MsgBox(EX.ToString)
End Try
End Using