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

PHP mysqli vorbereitete Anweisung für gespeicherte Prozedur ohne Parameter

Die Art und Weise, wie gespeicherte Prozeduren mit vorbereiteten Anweisungen arbeiten, ist etwas komplizierter. PHP-Handbuch besagt, dass Sie Sitzungsvariablen verwenden müssen (MySQL-Sitzungen, nicht PHP)

Sie könnten es also mit

tun
$connect=&ConnectDB();
// bind the first parameter to the session variable @uid
$stmt = $connect->prepare('SET @uid := ?');
$stmt->bind_param('s', $uid);
$stmt->execute();

// bind the second parameter to the session variable @userCount
$stmt = $connect->prepare('SET @userCount := ?');
$stmt->bind_param('i', $userCount);
$stmt->execute();

// execute the stored Procedure
$result = $connect->query('call IsUserPresent(@uid, @userCount)');

// getting the value of the OUT parameter
$r = $connect->query('SELECT @userCount as userCount');
$row = $r->fetch_assoc();               

$toRet = ($row['userCount'] != 0);

Anmerkung:

Ich empfehle, diese Prozedur als Funktion mit einem IN-Parameter umzuschreiben, der INT zurückgibt.