Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using PHP with mySQL. There are the samples on the web for calling a routine from PHP with OUT parameters, and for calling a routine from PHP that returns a result set (or row set, if you prefer). However, I haven't found a sample that does both -- a sample for calling a routine that returns both OUT parameters and a result set. I tried to run the following code and received an error: (2014) Commands out of sync; you can't run this command now.

// Call sproc
if(!$mysqli->query("CALL GetAllOpenSessions(@un, @numSessions)"))
    die("CALL failed: (" . $mysqli->errno . ") " . $mysqli->error);

// Fetch OUT parameter (@numSession)
if (!($res = $mysqli->query("SELECT @numSessions AS numSessions")))
    die("Fetch failed: (" . $mysqli->errno . ") " . $mysqli->error);
$out = $res->fetch_assoc();

// Get result set
if($out['numSessions'] > 0)
{
    while($row = mysqli_fetch_array($result, MYSQLI_ASSOC))
    {
        $sid = $row["sid"];
        $title = $row["title"];
        printf("<li><a href='lobby.php?sid=%s' data-ajax='false' data-transition='slide'>%s</a></li>", $sid, $title);
    }
}
else
{
    printf("<li><a href='join.php' data-ajax='false'>None</a></li>");
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.