dongzhuo7291 2012-09-30 04:28 采纳率: 0%
浏览 181
已采纳

在php中使用'out'参数调用mysql函数或存储过程

I have used mysql stored procedure in php, but i need to return few values from my sql, so i am planning to use mysql functions or stored procedure with ''out'parameter.

it would be good if anyone can help me on that.

  • 写回答

2条回答 默认 最新

  • doushi8599 2012-10-03 04:19
    关注

    i found solution for this

    http://blog.ulf-wendel.de/2011/using-mysql-stored-procedures-with-php-mysqli/

      $mysqli = new mysqli("localhost", "root", "", "test");
    if (!$mysqli->query("DROP PROCEDURE IF EXISTS p") ||
        !$mysqli->query('CREATE PROCEDURE p(OUT msg VARCHAR(50)) BEGIN SELECT "Hi!" INTO msg; END;'))
       echo "Stored procedure creation failed: (" . $mysqli->errno . ") " . $mysqli->error;
    
    if (!$mysqli->query("SET @msg = ''") ||
        !$mysqli->query("CALL p(@msg)"))
     echo "CALL failed: (" . $mysqli->errno . ") " . $mysqli->error;
    
    if (!($res = $mysqli->query("SELECT @msg as _p_out")))
     echo "Fetch failed: (" . $mysqli->errno . ") " . $mysqli->error;
    
    $row = $res->fetch_assoc();
    echo $row['_p_out'];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?