Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select Sum(SqlColumn) as myvar from
Message
From
17/01/2015 03:20:52
 
 
To
All
General information
Forum:
ASP.NET
Category:
Other
Title:
Select Sum(SqlColumn) as myvar from
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:
01613775
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
Next
Reply
Map
View

Click here to load this message in the networking platform