c#查询Sql Server数据库同时查询两个表,得到数据在comboBox显示该怎么做?
我的数据库类代码是这样的,但是发现查询的结果只是第一个表中第一列的数据的集合。在线等大神解救。publicstaticArrayListQuerySql(SqlConne...
我的数据库类代码是这样的,但是发现查询的结果只是第一个表中第一列的数据的集合。在线等大神解救。
public static ArrayList QuerySql(SqlConnection conn)
{
ArrayList al = new ArrayList();
DataSet ds = null;
try
{
ds = new DataSet();
SqlDataAdapter objAdapt = new SqlDataAdapter("select * from employee e,channel c where e.pkey = c.employee_key", conn);
objAdapt.Fill(ds);
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
DataRow dr = ds.Tables[0].Rows[i];
al.Add(dr.ItemArray[0].ToString());
}
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
return al;
} 展开
public static ArrayList QuerySql(SqlConnection conn)
{
ArrayList al = new ArrayList();
DataSet ds = null;
try
{
ds = new DataSet();
SqlDataAdapter objAdapt = new SqlDataAdapter("select * from employee e,channel c where e.pkey = c.employee_key", conn);
objAdapt.Fill(ds);
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
DataRow dr = ds.Tables[0].Rows[i];
al.Add(dr.ItemArray[0].ToString());
}
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
return al;
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询