sql >> Database >  >> RDS >> Mysql

PHP + MySql + Stored Procedures, hoe krijg ik toegang tot een out-waarde?

het lijkt erop dat het in dit bericht is beantwoord:

http://forums.mysql.com/read.php ?52,198596,198717#msg-198717

Met mysqli PHP API:

Neem aan dat sproc myproc(IN i int, OUT j int):

$mysqli = new mysqli(  "HOST", "USR", "PWD", "DBNAME" );
$ivalue=1;
$res = $mysqli->multi_query( "CALL myproc($ivalue,@x);SELECT @x" );
if( $res ) {
  $results = 0;
  do {
    if ($result = $mysqli->store_result()) {
      printf( "<b>Result #%u</b>:<br/>", ++$results );
      while( $row = $result->fetch_row() ) {
        foreach( $row as $cell ) echo $cell, "&nbsp;";
      }
      $result->close();
      if( $mysqli->more_results() ) echo "<br/>";
    }
  } while( $mysqli->next_result() );
}
$mysqli->close();



  1. MySQL UDF sys_exec() werkt niet

  2. Exporteer MySQL-gegevens naar Excel in PHP

  3. Receptendatabase, zoeken op ingrediënt

  4. Hibernate-dialect voor Oracle Database 11g?