dataSet ds=数据查询结果
if(ds!=null &&dstable!=null &&datable[0]rowscount!=0)
{
jb=dstable[0]rows[0]["b"]toString();
jh=dstable[0]rows[0]["h"]toString();
}
string selectStr = "select count() from 表";
SqlCommand select = new SqlCommand(selectStr, sqluser);
sqluserOpen();//就是你的数据库连接sqlconnection
int a = (int)selectExecuteScalar();
sqluserClose();
return a;
没明白楼主的具体意思,如果是用JAVA写的话,则取得的数据是一个结果集,有了结果集就可以知道行数了。如果是在数据库中需要得到行数,则如楼上的兄弟写的select count() from 表名 就可以了,这样更直接简单。
以上就是关于C#读取数据库一列的多行数据全部的内容,包括:C#读取数据库一列的多行数据、asp.net如何获取数据库中数据的条数、怎么用js语句得出数据库里我取数据的行数。用sql语句也行等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)