PHP/MySQLi で 2 つの準備済みステートメントを使用して、mysql データベースからデータを取得しています。ただし、ステートメントを実行すると、「コマンドが同期されていないため、現在コマンドを実行できません」というエラーが表示されます。
これが私のコードです:
$stmt = $mysqli->prepare("SELECT id, username, password, firstname, lastname, salt FROM members WHERE email = ? LIMIT 1";
$stmt->bind_param('s', $loweredEmail);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($user_id, $username, $db_password, $firstname, $lastname, $salt);
$stmt->fetch();
$stmt->free_result();
$stmt->close();
while($mysqli->more_results()){
$mysqli->next_result();
}
$stmt1 = $mysqli->prepare("SELECT privileges FROM delegations WHERE id = ? LIMIT 1");
//This is where the error is generated
$stmt1->bind_param('s', $user_id);
$stmt1->execute();
$stmt1->store_result();
$stmt1->bind_result($privileges);
$stmt1->fetch();
私が試したこと:
- 準備済みステートメントを 2 つの別個のオブジェクトに移動します。
コードの使用:
while($mysqli->more_results()){ $mysqli->next_result(); } //To make sure that no stray result data is left in buffer between the first //and second statements
- free_result() と mysqli_stmt->close() の使用
PS: 'Out of Sync' エラーは、2 番目のステートメントの '$stmt1->error' から発生します。