标题:[求助]compute sum(列名)如何调用啊?
取消只看楼主
tsyj
Rank: 1
等 级:新手上路
帖 子:73
专家分:0
注 册:2006-3-21
 问题点数:0 回复次数:3 
[求助]compute sum(列名)如何调用啊?
SqlCommand cmd=new SqlCommand ("select * from 表 compute sum(列名)",con)
我算出了这个sum.怎么调用这个sum啊??
搜索更多相关主题的帖子: sum compute 列名 
2006-06-02 08:24
tsyj
Rank: 1
等 级:新手上路
帖 子:73
专家分:0
注 册:2006-3-21
得分:0 

我建了这个函数:
public static tt(int a)
{

SqlConnection con=new SqlConnection("server=.;database=news;uid=sa;pwd=;");
SqlCommand cmd1=new SqlCommand(" select sum(vtsum) as aa from vta",con);
con.Open();
SqlDataReader sdr1=cmd1.ExecuteReader();
int a=Convert.ToInt32(sdr1["aa"].ToString());

return a;
}
我在PAGE__LOAD这样调用
this.tt(int a)
结果报错说我这个类,接口或方法没有返回类型,不知道是怎么回事,请指教一下...>>>>>>>>>


人生无常,只争朝夕,修身立命,不虚此行。
2006-06-02 11:51
tsyj
Rank: 1
等 级:新手上路
帖 子:73
专家分:0
注 册:2006-3-21
得分:0 
a值没有定义如何调用
是啊,我是这样做了,
public static int tt(int a)
{

SqlConnection con=new SqlConnection("server=.;database=news;uid=sa;pwd=;");
SqlCommand cmd1=new SqlCommand(" select sum(vtsum) as aa from vta",con);
con.Open();
SqlDataReader sdr1=cmd1.ExecuteReader();
int a=Convert.ToInt32(sdr1["aa"].ToString());

return a;
}


但是不知道怎么调用这个”a“值,
我在pageload中这样调用
Page_Load()
{
this.tt(int a);
a=sdr["vta'].Tostring();

}



结果总是报错说a值没有定义,很郁闷,不知道是怎么回事。。到底该怎么调用,请指教?????

人生无常,只争朝夕,修身立命,不虚此行。
2006-06-02 19:38
tsyj
Rank: 1
等 级:新手上路
帖 子:73
专家分:0
注 册:2006-3-21
得分:0 

怎么把CheckBoxList的多个值写进数据库里面


人生无常,只争朝夕,修身立命,不虚此行。
2006-06-04 21:52



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-69174-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.161317 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved