如何从c#
中的DataTable获取特定列值我的代码 C#有问题。
我需要从 DataTable 中读取特定的列值。
我尝试使用此解决方案但未成功,因为输出是在查询(文件)中选择的列的名称,而不是字段数据库的值。
我非常感谢您在解决这个问题时能给我的任何帮助。
这是我的代码:
public DataTable GridViewBind()
{
using (OdbcConnection cn =
new OdbcConnection(ConfigurationManager.ConnectionStrings["cn"].ConnectionString))
{
sql1 = " SELECT FILE FROM tbl_A WHERE Id = 1; ";
using (OdbcDataAdapter command =
new OdbcDataAdapter(sql1, cn))
{
try
{
cn.Open();
dset = new DataSet();
dset.Clear();
command.Fill(dset);
DataTable dt = dset.Tables[0];
GridView1.DataSource = dt;
GridView1.DataBind();
Response.Write(dt.Columns[0].ToString());
return dt;
}
catch (Exception ex)
{
throw new ApplicationException("operation failed!", ex);
}
finally
{
if (command != null)
{
command.Dispose();
}
if (cn != null)
{
cn.Close();
cn.Dispose();
}
}
}
}
}
编辑#1
现在我有错误:
System.IndexOutOfRangeException:位置0没有行。
public DataTable GridViewBind()
{
using (OdbcConnection cn =
new OdbcConnection(ConfigurationManager.ConnectionStrings["cn"].ConnectionString))
{
sql1 = " SELECT FILE FROM tbl_A WHERE Id = 1; ";
using (OdbcDataAdapter command =
new OdbcDataAdapter(sql1, cn))
{
try
{
cn.Open();
dset = new DataSet();
dset.Clear();
command.Fill(dset);
DataTable dt = dset.Tables[0];
GridView1.DataSource = dt;
GridView1.DataBind();
string file = dt.Rows[0].Field<string>(0);
Response.Write(file.ToString());
return dt;
}
catch (Exception ex)
{
throw new ApplicationException("operation failed!", ex);
}
finally
{
if (command != null)
{
command.Dispose();
}
if (cn != null)
{
cn.Close();
cn.Dispose();
}
}
}
}
}
答案 0 :(得分:8)
该表通常包含多行。使用循环并使用row.Field<string>(0)
访问每行的值。
foreach(DataRow row in dt.Rows)
{
string file = row.Field<string>("File");
}
您也可以通过索引访问它:
foreach(DataRow row in dt.Rows)
{
string file = row.Field<string>(0);
}
如果您只想要一行,您还可以使用DataRowCollection
的索引器:
string file = dt.Rows[0].Field<string>(0);
如果表为空,则失败,请使用dt.Rows.Count
检查是否有行:
if(dt.Rows.Count > 0)
file = dt.Rows[0].Field<string>(0);