Home > Software engineering >  VB database stored procedure operation, set the output parameters of the code look not to understand
VB database stored procedure operation, set the output parameters of the code look not to understand

Time:09-19

Dim CNN As SqlConnection=New SqlConnection (" server=PC - 201504020821; The database=SHOYO; uid=sa; The PWD=1234;" )
CNN. The Open ()
Dim cm As New SqlDataAdapter ()
The cm. The SelectCommand=New SqlCommand ()
Cm. SelectCommand. Connection=CNN
Cm.SelectCommand.Com mandText="Add_dingdan" 'stored procedure is: "Add_dingdan"
Cm.SelectCommand.Com mandType=CommandType. StoredProcedure
Cm. SelectCommand. The Parameters. AddWithValue (" @ name1, "TextBox1. Text) 'add input parameters

' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' what is the meaning of the following 3 rows ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '
Dim parOutput what is' type
ParOutput=cm. SelectCommand. The Parameters. AddWithValue (" @ result1 ", SqlDbType. Int)
ParOutput. Direction=ParameterDirection. The Output 'parameter type for the Output
' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '
Cm. SelectCommand. ExecuteNonQuery () "'
MsgBox (cm. SelectCommand. The Parameters (" @ result1 "). The Value) ' 'shows the return value

Question: please parse the meaning of the above 3 lines of code, are there other ways to more simple!

CodePudding user response:

Suggest first will learn how to write a stored procedure with output parameters and how to invoke the output parameters in the query analyzer return value,
  • Related