利用VB.NET调用存储过程与MysqL调用自身的存储过程差不多,都使用CALL方法。
If myConn.State <> ConnectionState.Open Then myConn.Open() mycommand = New MysqLCommand("call 存储过程名称('" & “参数” & "');",myConn) mycommand.ExecuteNonQuery() If myConn.State <> ConnectionState.Closed Then myConn.Close()原文链接:https://www.f2er.com/vb/259310.html