Tell me I have this code
MySqlCommand cmd = new MySqlCommand("INSERT INTO news (title, body) VALUES(" + textBox1.Text + "," + richTextBox1.Text + ");", cnt);
And I always have an error as if there is no such column, and if I use this
MySqlCommand cmd = new MySqlCommand("INSERT INTO news (title) VALUES(\"" + title + "\");", mysqlCon);
So everything is fine, so you can insert many requests at once?