gpt4 book ai didi

c#初学者-如何使用if语句检查文本框是否为空?

转载 作者:行者123 更新时间:2023-11-28 23:40:09 28 4
gpt4 key购买 nike

我正在使用文本框将数据插入数据库。但是我不想向数据库插入空值或空值。如何使用 if 语句检查文本框是否为空? (这意味着如果文本框为空,则显示所需用户输入数据的对话框)

这是我的代码:

 private void submit_button_Click(object sender, EventArgs e)
{

string constring = "datasource=localhost;username=root;password=";
string Query = "INSERT INTO bug.bug (Bug_ID, title, Type_of_bug, software, software_version, description, step_to_reproduction, severity, priority, symptom) values('" + this.bugid_txt.Text+"', '" + this.title_txt.Text + "','" + this.comboBox1.Text + "','" + this.software_txt.Text + "','" + this.software_version_txt.Text + "','" + this.description_txt.Text + "','" + this.step_to_reproduction_txt.Text + "','" + this.severity_combo.Text + "','" + this.priority_combo.Text + "','" + this.symptom_txt.Text + "')";

MySqlConnection conDataBase = new MySqlConnection(constring);
MySqlCommand cmdDataBase = new MySqlCommand(Query, conDataBase);
MySqlDataReader myReader;
try
{
conDataBase.Open();
myReader = cmdDataBase.ExecuteReader();
MessageBox.Show("The Bug have been reported");
while(myReader.Read())
{

}
this.Close();
}catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}

最佳答案

您可以使用 string.IsNullOrEmptystring.IsNullOrWhiteSpace 方法来检查字符串是否为空或仅包含空格。

您还应该避免使用 + 加入查询。更好地使用参数化查询。 Example .

关于c#初学者-如何使用if语句检查文本框是否为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34628004/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com