当前位置:编程学习 > C#/ASP.NET >>

C#在.Net中如何使用Stored Procedure,最好有比较完整的实例

谁有.Net C#调用Stored Procedure比较完整的例子?能跟大家分享一下吗? --------------------编程问答-------------------- 在sql下的存储过程
--返回指定用户的信息
create proc MemberLogin

 @name varchar(100) --帐号
)
as
 select * from members where name=@name

然后执行
SqlConnection conn=new SqlConnection("连接路径");
SqlCommand comm=new SqlCommand("MemberLogin",conn);
comm.CommandType=CommandType.StoredProcedure;
...
然后下面就是comm的执行

补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,