High Im unsure how to add insert data to mysql using odbc?
I have a table called User and I would like to add generic details to it, Name, location etc etc
{
string = textbox1.text("Name");
OdbcConnection cn = new OdbcConnection("Driver={MySQL ODBC 3.51 Driver}; Server=localhost; Database=gymwebsite; User=root; Password=;");
cn.Open();
OdbcCommand cmd = new OdbcCommand("INSERT INTO User (Name)");
cmd.Parameters.Insert(Name into @name);
}
}
}