gpt4 book ai didi

c# - sum()命令不返回表中的附加值

转载 作者:太空宇宙 更新时间:2023-11-03 18:09:03 24 4
gpt4 key购买 nike

我想对从文本框中输入日期的收入表中的金额求和。

try
{
con.Open();
SqlDataReader myReader = null;
SqlCommand cmd = new SqlCommand("select sum(amount) from income where date='" + TextBox15.Text + "'", con);
myReader = cmd.ExecuteReader();
while (myReader.Read())
{
TextBox16.Text = (myReader["amount"].ToString());
}
con.Close();

}
catch (Exception e1)
{
Label1.Text = e1.Message;
}

我的金额数据类型是小数

最佳答案

我看不出有任何理由使用 ExecuteReader在你的情况下。使用 ExecuteScalar相反,这正是您所需要的,因为您的查询只返回一行的一列。

Executes the query, and returns the first column of the first row in the result set returned by the query.

而且您应该始终使用 parameterized queries .这种字符串连接对开放SQL Injection 攻击。

例如;

SqlCommand cmd = new SqlCommand("select sum(amount) from income where date = @date", con);
cmd.Parameters.AddWithValue("@date", TextBox15.Text);
TextBox16.Text = cmd.ExecuteScalar().ToString();

关于c# - sum()命令不返回表中的附加值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20140761/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com