在.NET中调用存储过程
2020-12-13 03:03
标签:style c tar color com a 在.NET中调用存储过程 今天试了一下用存储过程取得数据。归纳方法如下: 1.用SqlCommand和DataSet: SqlDataAdapter dsCommand=new SqlDataAdapter(cmd); 2.用SqlCommand和SqlDataAdapter 在.NET中调用存储过程,搜素材,soscw.com 在.NET中调用存储过程 标签:style c tar color com a 原文地址:http://blog.csdn.net/u014739780/article/details/25608905
SqlConnection conn=new SqlConnection("server=(local);uid=;password=;database=");
SqlCommand cmd=new SqlCommand("StoreProcedure",connn);
cmd.CommandType=CommandType.StoreProcedure;
DataSet ds=new DataSet();
dsCommand.Fill(ds);
Sqlconnection conn=new SqlConnection("server=(local);uid=;password=;database=");
SqlCommand cmd=new SqlCommand("StoreProcedure",conn);
cmd.CommandType=CommandType.StoreProcedure;
SqlDataReader dr=cmd.ExecuteReader()
while(dr.Read())
{
Response.Write(dr.Item["Field"]);
}