使用command对象检索数据库的步骤
2013-07-26
展开全部
最简单的例子 SqlConnection con = new SqlConnection("你的连接字符串");
SqlCommand com = new SqlCommand("SQL查询语句", con);
con.Open();
SqlDataReader dr = com.ExecuteReader();
while (dr.Read())
{
Response.Write(dr["字段1"].ToString(); ……
} con.Close();
SqlCommand com = new SqlCommand("SQL查询语句", con);
con.Open();
SqlDataReader dr = com.ExecuteReader();
while (dr.Read())
{
Response.Write(dr["字段1"].ToString(); ……
} con.Close();
2013-07-26
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询