关于asp.net数据访问层的一个方法
我现在有一条sql语句selectcount(*)fromworkorderwhereorderrecieve='a'andorderstate='未处理'查询得到一个数...
我现在有一条sql语句
select count(*) from workorder where orderrecieve='a' and orderstate='未处理' 查询得到一个数字是15 我想把这个15赋值给首页上的一个变量num 这个方法怎么实现啊?? 展开
select count(*) from workorder where orderrecieve='a' and orderstate='未处理' 查询得到一个数字是15 我想把这个15赋值给首页上的一个变量num 这个方法怎么实现啊?? 展开
展开全部
首先导入System.Data.SqlClient 类
VB.NET:
Dim myConn As New SqlConnection("连接字符串")
Dim myComm As New SqlCommand("select count(*) from workorder where orderrecieve='a' and orderstate='未处理'", myConn)
myConn.Open()
Dim Result As String = myComm.ExecuteScalar.ToString
myConn.Close()
num = Result
C#:
SqlConnection myConn = new SqlConnection("连接字符串");
SqlCommand myComm = new SqlCommand("select count(*) from workorder where orderrecieve='a' and orderstate='未处理'", myConn);
myConn.Open();
string Result = myComm.ExecuteScalar.ToString;
myConn.Close();
num = Result;
VB.NET:
Dim myConn As New SqlConnection("连接字符串")
Dim myComm As New SqlCommand("select count(*) from workorder where orderrecieve='a' and orderstate='未处理'", myConn)
myConn.Open()
Dim Result As String = myComm.ExecuteScalar.ToString
myConn.Close()
num = Result
C#:
SqlConnection myConn = new SqlConnection("连接字符串");
SqlCommand myComm = new SqlCommand("select count(*) from workorder where orderrecieve='a' and orderstate='未处理'", myConn);
myConn.Open();
string Result = myComm.ExecuteScalar.ToString;
myConn.Close();
num = Result;
展开全部
写一个返回类型为int类型的方法,然后在首页调用这个方法。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
dal层中:如果类名为dalcount
public int count()
{
……//就是写sql获取得到那个数字值,然后return
}
bll层中:类名为bllcount
dal.dalcount dc=new dal.dalcount();
public int count()
{
return dc.count();
}
页面:
bll.bllcount bc=new bll.bllcount();
int num=bc.count();
public int count()
{
……//就是写sql获取得到那个数字值,然后return
}
bll层中:类名为bllcount
dal.dalcount dc=new dal.dalcount();
public int count()
{
return dc.count();
}
页面:
bll.bllcount bc=new bll.bllcount();
int num=bc.count();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把查询结果绑到DataTable,然后在DataTable里取出来或者写成存储过程,再读取出来。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
那要看你的方法返回的是什么值类型了,如果是object那就好办,直接把返回值付给num
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询