私は C# と SQL Server CE を使用しています。私の質問は次のとおりです。
私の WinForms アプリには、データを入力するテキスト ボックスがいくつかあります。テキスト ボックスが入力されていないときに挿入した場合のユーザー エラーを防ぐ方法を知りたいですか?
クエリ挿入用のテキスト ボックスにデータがないことを確認する方法は?
これが私のコードです:
koneksi.Open();
int query = perintahsql.ExecuteNonQuery();
try
{
if (query > 0)
{
MessageBox.Show("Success.");
}
else
{
MessageBox.Show("Can't insert record because of empty(s) field.");
perintahsql.Cancel();
}
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString(), "Can't insert record!");
perintahsql.Parameters.Clear();
}
koneksi.Close();