リモート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 フォーム アプリです。