在.NET中调用存储过程

2020-12-13 03:03

阅读:524

标签:style   c   tar   color   com   a   

在.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中调用存储过程,搜素材,soscw.com

在.NET中调用存储过程

标签:style   c   tar   color   com   a   

原文地址:http://blog.csdn.net/u014739780/article/details/25608905


评论


亲,登录后才可以留言!