在.NET中调用存储过程

时间:2014-05-14 00:20:26   收藏:0   阅读:428

在.NET中调用存储过程

今天试了一下用存储过程取得数据。归纳方法如下:

1.用SqlCommand和DataSet: 
SqlConnection conn=new SqlConnection("server=(local);uid=;password=;database="); 
SqlCommand cmd=new SqlCommand("StoreProcedure",connn); 
cmd.CommandType=CommandType.StoreProcedure;

SqlDataAdapter dsCommand=new SqlDataAdapter(cmd); 
DataSet ds=new DataSet(); 
dsCommand.Fill(ds);

2.用SqlCommand和SqlDataAdapter 
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"]); 
}

在.NET中调用存储过程,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!