当前位置:编程学习 > asp >>

在.net中调用存储过程的另一种方法

[存储过程]

‘////////////////////////////////////////////////////////////////////////////////////

CREATE PROCEDURE Test_procedure @cid int ,@y int, @n varchar(10) output

AS

select * from city where cid=@cid

if @y=1

begin

  set @n = 成功!

  return 0

end

else

begin

  set @n = 失败!

  return -1

end

GO

[程序中调用存储过程]

‘////////////////////////////////////////////////////////////////////////////////////

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

        Dim conn As OleDbConnection

        Try

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,