datagridview のコンボ ボックスの値に応じて、SQL DB の列からデータを取得しようとしています。コードは次のとおりです。
 private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs 
 {
        using (SqlConnection conn = new SqlConnection("Data Source=POSSERVER\\SQLEXPRESS;Initial Catalog=ms;Integrated Security=True"))
        {
            string priceselected = ("SELECT price FROM Table_1 WHERE name=" + dataGridView1.CurrentRow.Cells[0].Value.ToString());
            SqlCommand cmd = new SqlCommand(priceselected, conn);
            conn.Open();
            cmd.ExecuteNonQuery();
            conn.Close();
        }
 } 
値段をつけたいdataGridView1.CurrentRow.Cells[2]
しかし、コンボボックスからアイテムを選択するたびにsqlexceptionが発生します
何か助けて??