本文介绍了如何检查datareader并将其与其他值进行比较?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我想检查我的数据读取器值并将其与另一个值进行比较我使用这种代码安静但它不起作用。



I want to check my data reader value and compare it with another value I use this peace of code but it does not work.

ol_com.CommandText = "select [card_id] from student_info where [card_id] = '" + card_No.Text + "'";
reader = ol_com.ExecuteReader();
if (reader.IsDBNull(0) && reader["card_id"] == "-")
{
   //do my work here
}//end if

else
{
    //give a message
}//end else

推荐答案


这篇关于如何检查datareader并将其与其他值进行比较?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 20:30