我正在将一条记录添加到远程 mysql 数据库中,然后我想检查它是否已添加 - 所以我想尝试选择这个特定的记录。
我的代码:
public void Select(string filename)
{
string query = "SELECT * FROM banners WHERE file = '"+filename+"'";
//open connection
if (this.OpenConnection() == true)
{
//create command and assign the query and connection from the constructor
MySqlCommand cmd = new MySqlCommand(query, connection);
//Execute command
cmd.ExecuteNonQuery();
//close connection
this.CloseConnection();
}
}
如何检查服务器的响应?还是选定的记录?它是 c# windows 窗体应用程序。