ASP.net操纵数据集中的数据

时间:2011-06-15 08:47:29

标签: c# asp.net dataset

我设法连接到interbase数据库并从数据库中获取数据并将其存储在数据集中,我需要操作数据集中的一些数据并执行以下操作,

在数据集中添加一个名为total的新列, 对于每一行,我需要添加第二列和第三列,并将结果放入总列中。

有些人可以解释我如何做到这一点,我使用以下代码将数据导入数据集。

    OdbcConnection conn = new OdbcConnection();
    conn.ConnectionString = ConfigurationManager.ConnectionStrings["ConnectionString2"].ConnectionString;

    DataSet ds = new DataSet();

    OdbcDataAdapter da = new OdbcDataAdapter("SELECT * FROM MTD_FIGURE_VIEW1", conn);

    da.Fill(ds);

4 个答案:

答案 0 :(得分:2)

这是最简单的方法

 ds.Tables[0].Columns.Add("Sum", typeof(double), "Col1 + Col2");

答案 1 :(得分:1)

以下是如何>操纵数据集中的一些数据

ds.Tables[0].Columns.Add("Sum", typeof(string));
foreach (DataRow drRow in ds.Tables[0].Rows)
{
    drRow["Sum"] = (Convert.ToInt32(drRow["Col1"].ToString()) + Convert.ToInt32(drRow["Col2"].ToString())).ToString();
}

<强> - UPDATE -

如下所示,使用三元运算符:

drRow["Sum"] =
    (string.IsNullOrEmpty(drRow["Col1"].ToString()) ? 0.00 : Convert.ToDouble(drRow["Col1"].ToString())) +
    (string.IsNullOrEmpty(drRow["Col2"].ToString()) ? 0.00 : Convert.ToDouble(drRow["Col2"].ToString()));

答案 2 :(得分:1)

如果您确定列值永远不会为空或空,那么最好的方法是

ds.Tables[0].Columns.Add("Sum", typeof(double), "Col1 + Col2");

如果你的任何列的值为null,那么它不会给出任何例外,但总值也是空的......

如果可以有任何空值,那么试试这个

           dt.Columns.Add("Total", typeof(double));
        foreach (DataRow dr in dt.Rows)
        {
            if (String.IsNullOrEmpty(dr["col1"].ToString()))
                dr["col1"] = 0.0;
            if (String.IsNullOrEmpty(dr["col2"].ToString()))
                dr["col2"] = 0.0;

            dr["Total"] = Convert.ToDouble(dr["col1"]) + Convert.ToDouble(dr["col2"]);
        }

在这种情况下,如果你从不检查null或空值,那么这将给你一个运行时异常......

答案 3 :(得分:1)

您是否考虑过让数据库完成工作

OdbcDataAdapter da = new OdbcDataAdapter("SELECT *, (col1+col2) as sum FROM MTD_FIGURE_VIEW1", conn);

PS:你可能想摆脱你的select *并使用列名