使用phpMyAdmin,并希望从C#更新数据。但是,我有一个错误:
"Unknown column 'buyDate' in 'field list'"
我还在buyDate字段中使用了string.Format。这只是我代码的一部分。谢谢你的帮助。
private void btnSave_Click(object sender, EventArgs e)
{
conect.Open();
MySqlCommand cmd = new MySqlCommand();
cmd.Connection = conect;
cmd.CommandType = CommandType.Text;
int result = 0;
buyDate = string.Format("{0,10:dd/MM/yyyy}", txtBuyDate.Text);
volume = txtVolume.Text;
color = cboColor.SelectedValue.ToString();
type = cboType.SelectedValue.ToString();
cmd.CommandText = "update bucket set buyDate=@buyDate, volume=@volume, color=@color, type=@type where idBucket=@idBucket";
cmd.Parameters.AddWithValue("@idBucket", idBucket);
cmd.Parameters.AddWithValue("@buyDate", buyDate);
cmd.Parameters.AddWithValue("@volume", volume);
cmd.Parameters.AddWithValue("@color", color);
cmd.Parameters.AddWithValue("@type", type);
result += cmd.ExecuteNonQuery();
cmd.Parameters.Clear();
if (result > 0)
{
MessageBox.Show("You've changed " + result + " data");
}
else
{
MessageBox.Show("You haven't changed any data");
}
conect.Close();
this.Close();
}
我已经知道了这个问题。我对string.Format
使用了错误的语法答案 0 :(得分:0)
添加专栏' buyDate'到表'桶'
或者,您的日期字符串格式可能包含空格。 在日期值附近添加引号:
cmd.Parameters.AddWithValue("@buyDate", "'" + buyDate + "'");