void BtnConfirmClick(object sender, EventArgs e)
{
   string first = txtFname.Text;
   string last  = txtLname.Text;


   string query = "INSERT INTO customer (first, last)";
          query += " VALUES (@fstName,@lstName)";
   string url = "Server=localhost;Database=flight;uid=root;password=1234";

   con1 = new MySqlConnection(url);
   con1.Open();
   cmd1 = new MySqlCommand(query,con1);

   //SqlParameter myParam = new SqlParameter("@fstName", SqlDbType.VarChar, 55);
   //myParam.Value = last;
   //SqlParameter myParam2 = new SqlParameter("@lstName", SqlDbType.VarChar, 55);
   //myParam2.Value = first;

   cmd1.Parameters.AddWithValue("@fstName", first);
   cmd1.Parameters.AddWithValue("@lstName", last);
   //cmd1.Parameters.Add(myParam);
   //cmd1.Parameters.Add(myParam2);

   cmd1.ExecuteNonQuery();
   con1.Close();
}

I can't insert data into sqlServer, it keeps getting an error. Please Help!!

link|improve this question

0% accept rate
1  
Um, what is the error message? – devdigital Oct 21 '11 at 7:47
"I can't insert data into sqlServer, it keeps getting an error" You might wan't to tell us what error?... – Rob Oct 21 '11 at 7:47
yes, please show us sql error you get... Insert in your code try {} catch block and exeprion message add to your original post – Praetor12 Oct 21 '11 at 7:48
1  
you want to insert data into sql server, but you use MySqlXXX, is that the problem? – ojlovecd Oct 21 '11 at 7:54
Ok I got it guys, Thank you all anyway. – Toni Oct 21 '11 at 7:54
show 2 more comments
feedback

1 Answer

Ar the first glance you have forgot about ending char (; in your sql query). You need:

string query = "INSERT INTO customer (first, last)";
       query += " VALUES (@fstName,@lstName);";
link|improve this answer
2  
definitely NOT true. – Yossarian Oct 21 '11 at 7:52
1  
@Praetor12 it still works without ";". But thank you – Toni Oct 21 '11 at 7:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.