gpt4 book ai didi

c# - 如何在 asp.net c# 中使用具有聚合函数的数据集

转载 作者:行者123 更新时间:2023-11-30 21:13:43 26 4
gpt4 key购买 nike

我必须使用数据集找到一个表的最大值。
我为此编写了如下代码:

    DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter("select max(FlightBookingID) from dbo.FlightBookingDetails", FlyCon);
da.Fill(ds);
if (ds != null)
{
Session["FBookingID"] = Convert.ToString(ds.Tables[0].Rows[0]["FlightBookingID"]);
}

但是在

Convert.ToString(ds.Tables[0].Rows[0]["FlightBookingID"]);

我应该对上面的代码做哪些修改?

最佳答案

为什么不能使用SqlCommand.ExecuteScalar

using (SqlCommand comm = new SqlCommand("select max(FlightBookingID) from dbo.FlightBookingDetails", FlyCon))
{
var result = comm.ExecuteScalar();
if (!Convert.IsDBNull(result))
Session["FBookingID"] = result;
}

DataSet是非常复杂的类,您不应该仅仅为了从数据库中获取一个值而创建它。

关于c# - 如何在 asp.net c# 中使用具有聚合函数的数据集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6706115/

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