我有一个C#应用程序,它将信息提交给Access数据库。我填写三个必填框,然后单击“提交”。当用户点击按钮时,脚本应以下列方式响应:
步骤1.查看数据库表A,查看textBox1中的值是否存在于数据库中。
步骤2.如果值存在,则将textBox1,textBox2和textBox3的值分别添加到数据库表B列中。
步骤3.如果三个文本框中的任何一个留空,则显示一条消息。
步骤4.如果textBox1中的值不在数据库表中,则显示一条消息。 (最终,我计划用默认的数据库字段填充替换消息)
问题: 当我运行程序时,在上述任何一种情况下,结果都是上面的步骤4。它似乎跳过了第一个“if”语句,并跳到了“else”结果。
任何解决此问题的帮助,将不胜感激! “Private Void”代码如下。 提前谢谢。
private void button1_Click(object sender, EventArgs e)
{
OleDbCommand cmd = new OleDbCommand("select * from script_Orders where cust_Name = @UserID", vcon);
OleDbParameter param = new OleDbParameter();
param.ParameterName = "@UserID";
param.Value = textBox1.Text;
cmd.Parameters.Add(param);
OleDbDataReader reader = cmd.ExecuteReader();
{
if (reader.HasRows)
{
if (textBox1.Text == "" || textBox2.Text == "" || textBox3.Text == "")
{
MessageBox.Show("You must fill in all fields.");
return;
}
else
{
OleDbCommand dbCommand;
OleDbDataReader dbReader;
new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;data source=C:\Search\Database.accdb");
dbCommand = new OleDbCommand("select count(*) as Record_Count from script_received", vcon);
dbReader = dbCommand.ExecuteReader();
if (dbReader.Read() == true)
rowCount = dbReader["Record_Count"].ToString();
else
return;
var date = DateTime.Now.ToString("MM/dd/yyyy");
{
using (OleDbCommand command = new OleDbCommand("INSERT INTO script_Received (script, qty, emp_id, received_Date) VALUES (@script,@qty,@emp_Id,@rec_date)"))
{
command.CommandType = CommandType.Text;
command.Parameters.Add("@script", OleDbType.Integer).Value = textBox1.Text;
command.Parameters.Add("@qty", OleDbType.VarChar).Value = textBox2.Text;
command.Parameters.Add("@emp_id", OleDbType.VarChar).Value = textBox3.Text;
command.Parameters.Add("@rec_date", OleDbType.Date).Value = date;
command.Connection = vcon;
command.ExecuteNonQuery();
}
this.textBox1.Clear();
this.textBox2.Clear();
this.textBox1.Focus();
}
}
}
else
{
MessageBox.Show("The value of textBox1 is not in the orders table");
return;
}
}
}
答案 0 :(得分:2)
如果它跳转到else
的{{1}}而没有抛出任何例外,那么if(reader.HasRows)
不能是reader
,并且它的null
属性必须是{ {1}}。这意味着您的查询已成功执行但未返回任何行。
您可以尝试手动运行HasRows
语句,这可能有助于您了解错误。最有可能的是,您在文本框中键入的内容与false
值不匹配。