Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select Sum(SqlColumn) as myvar from
Message
 
 
To
17/01/2015 03:20:52
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
VB 9.0
OS:
Windows 7
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01613775
Message ID:
01613790
Views:
34
>using following c# code, I am trying to get sum of a field "LNOD" type varchar in a variable "mysum"
>
>protected void Button7_Click(object sender, EventArgs e)
>{
>SqlConnection con = new SqlConnection("Server=SDCHO\\SQLEXPRESS;Database=LoginPage;Trusted_Connection=true");
>con.Open();
>SqlCommand myCommand2 = new SqlCommand("select sum(lnod) as mysum from LeaveDataTable where ID='212' ", con);
>myCommand2.ExecuteNonQuery();
>Response.Write('The Sum of LNOD is :' + mysum);
>con.Close();
>}
>
>please help it is not working

Not working how? Does it error out or do you just not get a result?

Also, have you examined LeaveDataTable to verify that there are positive values of lnod where ID='212'?
Previous
Reply
Map
View

Click here to load this message in the networking platform