通过 C# 对 Access 数据库进行的 LIKE 查询始终返回 COUNT(*) 为 0



请查看以下代码:

using (OleDbConnection openCon = new OleDbConnection(ConfigurationManager.AppSettings["AccessConnectioString"]))
{
                openCon.Open();
                string tc = string.Empty;
                string ttc = string.Empty;
                if (!string.IsNullOrEmpty(QSetId))
                {
                    tc = "select count(*) as [Count] from ABC where QSetId = @qSetId and TText like 'RT*'";
                }
                else
                {
                    tc = "select count(*) as [Count] from PQR where TText like 'RT*'";
                }
                using (OleDbCommand qtc= new OleDbCommand(tc))
                {
                    qtc.Connection = openCon;
                    if (!string.IsNullOrEmpty(QSetId))
                        qtc.Parameters.Add("@qSetId", OleDbType.VarChar).Value = QSetId;
                    OleDbDataReader dr1 = qtc.ExecuteReader();
                    while (dr1.Read())
                    {
                        ttCnt = (int)dr1["Count"];
                    }
                }
                openCon.Close();
}

我总是被计数为 0 而不是某个整数值。在调试时,我接受查询并在MS ACCESS 2013中执行,它给了我正确的结果。我不明白问题是什么。

在 Access 本身中运行的查询和从外部应用程序运行的查询之间 LIKE 通配符的差异使您感到困惑。

从 Access 本身运行查询时,需要使用星号作为通配符:LIKE 'RT*' .

从外部应用程序(如 C# 应用)运行查询时,需要使用百分号作为通配符:LIKE 'RT%'

尝试ExecuteScalar()方法

替换它:

 OleDbDataReader dr1 = qtc.ExecuteReader();
 while (dr1.Read())
 {
    ttCnt = (int)dr1["Count"];
 }

有了这个:

 ttCnt = Convert.ToInt32(qtc.ExecuteScalar());

相关内容

  • 没有找到相关文章

最新更新