How can I obtain the out parameter value of the mysql stored procedure?

Source: Internet
Author: User
How can I obtain the out parameter value of the mysql stored procedure? I found it as follows: & nbsp; mysql_query ("call & nbsp; P _ Test_Login (@ Message, & nbsp; @ Id, & nbsp; '{$ userId}', & nbsp; '{$ pwd}') ", & ask how to obtain the out parameter value of the mysql stored procedure
I found it as follows:

Mysql_query ("call P _ Test_Login (@ Message, @ Id, '{$ userId}', '{$ pwd}')", $ conn) or die ("Query failed :". mysql_error ());
$ Result_mess = mysql_query ("select @ Message ");
$ Result_uid = mysql_query ("select @ Id ");
$ Row_mess = mysql_fetch_row ($ result_mess );
$ Row_uid = mysql_fetch_row ($ result_uid );
$ Proc_Error = $ row_mess [0];
$ UId = $ row_uid [0];

In this way, the stored procedure is executed and then used continuously.
$ Result_mess = mysql_query ("select @ Message ");
$ Result_uid = mysql_query ("select @ Id ");

This is equal to whether two consecutive requests are sent to the database, and the pressure is too high.
I want to send a request and obtain the output parameters. Is there no way to do this? Share:
------ Solution --------------------
Select @ Id as id, @ Message as message;

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.