我使用try-catch块来识别数据库中缺少某些数据。在我开始使用while来检查用户输入之前它很好但现在try-catch块不会被执行(while在try-catch中)。 我试图捕获的异常是当查询没有返回任何内容时OleDbDataReader抛出的InvalidOperationException。
try
{
string _cmd = "SELECT razao_social FROM tblImobiliarias WHERE cnpj ='" + ValorConsulta.Text + "'";
string conn = "Provider=Microsoft.ACE.OLEDB.12.0; Data Source=\\\\10.7.41.153\\Apoio\\Davi_Database\\Base_Imo.accdb";
OleDbConnection Connection = new OleDbConnection(conn);
OleDbCommand Command = new OleDbCommand(_cmd, Connection);
Connection.Open();
OleDbDataReader reader = Command.ExecuteReader();
while (reader.Read())
{
int _resMatriz = 0;
DialogResult result;
result = MessageBox.Show(
"Encontrado imobiliária: "
+ reader[_resMatriz]
+ ".\nEstá correto?", "Pesquisa", MessageBoxButtons.YesNo);
_resMatriz++;
if (result == System.Windows.Forms.DialogResult.Yes)
{
MessageBox.Show("CarregaImo()");
break;
}
else
{
continue;
}
}
}
catch (InvalidOperationException ex)
{
MessageBox.Show(
"O CNPJ "
+ ValorConsulta.Text
+ " não foi localizado no sistema.\nOs dados não podem ter pontuação. Tente novamente",
"Pesquisa",
MessageBoxButtons.OK,
MessageBoxIcon.Error);
throw new InvalidOperationException();
}
答案 0 :(得分:0)
我建议不要将Exception
用于正常的应用程序逻辑。如果您的读者没有结果,您可以使用' HasRows`属性,如下所示:
OleDbDataReader reader = Command.ExecuteReader();
if(reader.HasRows)
{
// Do what you need if there are rows
}
else // Instead of an exception handler
{
MessageBox.Show("O CNPJ " + ValorConsulta.Text + " não foi localizado no sistema.\nOs dados não podem ter pontuação. Tente novamente", "Pesquisa", MessageBoxButtons.OK, MessageBoxIcon.Error);
throw new InvalidOperationException(); // If you must throw the exception
}