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,