tailieunhanh - Beginning VB 2008 Databases From Novice to Professional phần 4

Hãy thử nhà: Thực hiện một thủ tục lưu trữ với các tham số Trong ví dụ này, bạn sẽ gọi thủ tục lưu trữ sp_Orders_By_EmployeeId2, cung cấp các ID của nhân viên như là một tham số đầu vào và hiển thị các tập hợp kết quả, tham số đầu ra, và giá trị trả lại. 1. | Simpo PDF Merge and Split Unregistered Version - http CHAPTER 6 USING STORED PROCEDURES 103 Try It Out Executing a Stored Procedure with Parameters In this example you ll call the sp_Orders_By_EmployeeId2 stored procedure supplying the employee ID as an input parameter and displaying the result set the output parameter and the return value. 1. Add a new VB .NET Console Application project named CallSp2 to your Chapter6 solution. Rename to . 2. Replace the code in with the code in Listing 6-2. Listing 6-2. Imports System Imports Imports Namespace Chapter6 Class CallSp2 Shared Sub Main create connection Dim conn As New SqlConnection Data Source . sqlexpress Initial Catalog Northwind Integrated Security True Try open connection create command Dim cmd As SqlCommand specify stored procedure to execute sp_orders_by_employeeid2 create input parameter Dim inparm As SqlParameter _ @employeeid 2 create output parameter Dim ouparm As SqlParameter _ @ordercount Simpo PDF Merge and Split Unregistered Version - http 104 CHAPTER 6 USING STORED PROCEDURES create return value parameter Dim retval As SqlParameter _ return_value execute command Dim rdr As SqlDataReader Process the result set While 0 1 rdr 0 .ToString .PadRight 5 rdr 1 .ToString End While display output parameter value The output parameter value is 0 _ @ordercount .Value display return value _ The return value is 0 _ return_value .Value .

TỪ KHÓA LIÊN QUAN