我在 mysql 中的 sql 命令有问题。我有一个 asp.net 应用程序并使用 mysql 数据库作为数据库。我想构建一个可以插入、更新、删除和选择数据库中记录的类。我有更新命令的问题。在 phpmyadmin 中它可以工作,但在我的课堂上不是:/
这是我的代码
public void UpdateRecord(string title, string firstname, string lastname, string company,
string timefrom, string timeto)
{
connection = new MySqlConnection();
try
{
MySqlCommand command = connection.CreateCommand();
//for testing
string sql = "UPDATE 'tb_gast' SET FIRSTNAME='test' WHERE ID=270";
command.CommandText = sql;
connection.Open();
command.ExecuteNonQuery();
}
catch (Exception)
{
}
finally
{
connection.Close();
}
}
此命令在 phpmyadmin 中工作
UPDATE `tb_gast`
SET
FIRSTNAME='uu',
LASTNAME='uu',
COMPANY='uu'
WHERE ID=270