Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie rufe ich eine gespeicherte MySQL-Prozedur aus PHP-Code heraus auf?

Ich habe jetzt eine Lösung gefunden, indem ich mysqli verwendet habe statt mysql .

<?php 

// enable error reporting
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
//connect to database
$connection = mysqli_connect("hostname", "user", "password", "db", "port");

//run the store proc
$result = mysqli_query($connection, "CALL StoreProcName");

//loop the result set
while ($row = mysqli_fetch_array($result)){     
  echo $row[0] . " - " . + $row[1]; 
}

Ich habe festgestellt, dass viele Leute ein Problem mit der Verwendung von mysql_connect, mysql_query and mysql_fetch_array haben .