Asp. NET using vb.net to invoke the stored procedure and get the return value

Source: Internet
Author: User
Asp.net| stored procedure//Stored procedure Code
CREATE PROCEDURE [Addnewinvoiceinfo] (@sUserID int, @sClaimMethod varchar (m), @sInvoiceNum varchar, @sInvoiceDate datetime, @sBuyCity varchar) as
Insert into Smb_invoiceinfo (memberid,claimmethod,invoicenum,invoicedate,invoicecity) Values (@sUserID, @ Sclaimmethod, @sInvoiceNum, @sInvoiceDate, @sBuyCity)
return @ @IDENTITY
Go

Calling stored procedure Code
Dim CN as New SqlConnection ()
Dim Invoiceid as String
Try
CN. ConnectionString = Dbconstr
CN. Open ()
Dim CMD as SqlCommand
CMD = New SqlCommand ("Addnewinvoiceinfo", CN)
Cmd.commandtype = CommandType.StoredProcedure

Cmd. Parameters.Add (New SqlParameter ("@sUserID", SqlDbType.Int))
Cmd. Parameters ("@sUserID"). Value = CInt (Userid.text)

Cmd. Parameters.Add (New SqlParameter ("@sClaimMethod", SqlDbType.VarChar, 50))
Cmd. Parameters ("@sClaimMethod"). Value = Transname.text

Cmd. Parameters.Add (New SqlParameter ("@sInvoiceNum", SqlDbType.VarChar, 50))
Cmd. Parameters ("@sInvoiceNum"). Value = Invoicenum.text

Cmd. Parameters.Add (New SqlParameter ("@sInvoiceDate", Sqldbtype.datetime))
Cmd. Parameters ("@sInvoiceDate"). Value = InvoiceDate.SelectedDate.Date

Cmd. Parameters.Add (New SqlParameter ("@sBuyCity", SqlDbType.VarChar, 50))
Cmd. Parameters ("@sBuyCity"). Value = Buycity.text

Cmd. Parameters.Add (New SqlParameter ("@sInvoiceID", SqlDbType.Int))
Cmd. Parameters ("@sInvoiceID"). Direction = ParameterDirection.ReturnValue

Cmd. ExecuteNonQuery ()
Invoiceid = CMD. Parameters ("@sInvoiceID"). Value.tostring ()
Cmd. Dispose ()
Catch ex as Exception
Response.Write (ex. ToString ())
Finally
CN. Close ()
End Try



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.