2

请查看以下代码:

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 中执行查询并执行,它给了我正确的结果。我不明白是什么问题。

4

2 回答 2

4

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

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

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

于 2014-01-09T09:52:53.267 回答
0

尝试ExecuteScalar()方法

替换这个:

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

有了这个:

 ttCnt = Convert.ToInt32(qtc.ExecuteScalar());
于 2014-01-09T09:32:33.497 回答