好吧,要么我现在真的很累,要么真的很厚,但我似乎找不到答案
我正在使用 ASP.NET,我想查找表中的行数。
我知道这是 SQL 代码:select count(*) from topics
,但是我怎么能把它显示为一个数字呢?
我要做的就是运行该代码,如果它 = 0 则显示一件事,但如果它大于 0 则显示其他内容。请帮忙?
这是我到目前为止所拥有的
string selectTopics = "select count(*) from topics";
// Define the ADO.NET Objects
SqlConnection con = new SqlConnection(connectionString);
SqlCommand topiccmd = new SqlCommand(selectTopics, con);
if (topiccmd == 0)
{
noTopics.Visible = true;
topics.Visible = false;
}
但我知道我错过了一些严重的错误。我一直在寻找年龄,但找不到任何东西。
PHP 就简单多了。:)