여러 mysqli 쿼리를 동시에 실행할 수 없는 이유는 무엇입니까?
알다시피, 연속된 쿼리를 사용하여 두 개의 별도 MySQL 쿼리를 실행하려고 하면 mysqli_query() 호출로 인해 두 번째 쿼리가 실패하게 됩니다. 이 동작은 보안 조치로 인한 것입니다.
mysqli_multi_query() to the Rescue
다행히 mysqli는 단일 쿼리에서 여러 쿼리를 실행하도록 특별히 설계된 mysqli_multi_query() 함수를 제공합니다. 데이터베이스 호출.
예 코드
다음은 mysqli_multi_query() 사용 방법의 예입니다.
$mysqli = new mysqli($host, $user, $password, $database); // Create query string with multiple queries separated by ; $query = "INSERT INTO images (project_id, user_id, image_name, date_created, link_to_file, link_to_thumbnail, given_name) VALUES ('$project_id', '$user_id', '$image_name', '$date_created', '$link_to_file', '$thumbnail', '$ImageName');"; $query .= "INSERT INTO images_history (project_id, user_id, image_name, date_created, link_to_file, link_to_thumbnail, given_name, day, month, year) VALUES ('$project_id', '$user_id', '$image_name', '$date_created', '$link_to_file', '$thumbnail', '$ImageName', '$day', '$month', '$year');"; // Execute query using mysqli_multi_query() $result = mysqli_multi_query($mysqli, $query); // Retrieve results if ($result) { do { $result = mysqli_store_result($mysqli); } while (mysqli_more_results($mysqli) && mysqli_next_result($mysqli)); } else { echo "First query failed: " . mysqli_error($mysqli); }
추가 고려 사항:
mysqli_multi_query()를 사용하면 단일 데이터베이스 호출에서 여러 쿼리를 효율적으로 실행하여 두 번째 쿼리 실패 문제를 피할 수 있습니다.
위 내용은 여러 MySQL 쿼리를 동시에 실행하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!