2

こんにちは、これは以前にここで回答されたようですが、私が試したことは何もありません。基本的に私がやろうとしているのは、いくつかのデータを挿入するストアド プロシージャを呼び出し、挿入された auto_increment の ID を返すことです。次に、そのステートメントが閉じられ、ID が保持されます。

それから楽しい部分が起こります。ループに入り、ループのインスタンスごとに、データを挿入して最後の auto_increment の ID を返す別のストアド プロシージャを呼び出す必要があります。その ID を使用して、さらにいくつかのことを行います。ただし、現在、ループで失敗しています。初めて問題なく実行され、次の準備でエラーが発生しますCommands out of sync; you can't run this command now

stmt->free() を使用して初めて結果を解放しようとしましたが、うまくいきませんでした。または mysqli2 接続を解放しましたが、この時点では何もしていません。ヒントやヒントをいただければ幸いです。

$insert_questionnaire_sql = "CALL insert_questionnaire_info(?, ?, ?, ?, ?, ?, ?)";

$questionnaire_insert_stmt = $mysqli->prepare($insert_questionnaire_sql);
$questionnaire_insert_stmt->bind_param("ssisiis", $meta[0], $meta[4], $length_of_questions, $user, $meta[2], $meta[3], $meta[1]);

//execute the statement
$success = $questionnaire_insert_stmt->execute();

$qn_id = -1;
//bind the id of the questionnaire that was just inserted
$questionnaire_insert_stmt->bind_result($qn_id);

//fetch the id
$questionnaire_insert_stmt->fetch();

//close the statement
$questionnaire_insert_stmt->close();


//next we insert each question into the database
$i = 0;
for($i; $i < count($Questions); $i++){
    //only if the question has been submitted
    if($Questions[$i]->submitted){
        //prepare the statement
        $insert_question_sql = "CALL insert_question_info(?, ?, ?, ?, ?, ?, ?)";
        $question_insert_stmt = $mysqli2->prepare($insert_question_sql) or die ($mysqli2->error);

        $type = -1;
        $width = -1;
        $height = -1;
        //count the number of answers
        $numAnswers = countNotDeletedAnswers($Questions[$i]);
        $text = $Questions[$i]->text;
        //figure out what kind of thing this is
        if($Questions[$i]->instruction == true){
            $type = 2;
        }
        else if($Questions[$i]->image == true){
            $type = 3;
            $width = $Questions[$i]->width;
            $height = $Questions[$i]->height;
            //if we have an image we want to put the path as the text
            $text = $Questions[$i]->path;
        }
        else{
            $type = 1;
        }

        //bind the params
        $question_insert_stmt->bind_param("isiisii", $qn_id, $text, $type, $numAnswers, $user, $width, $height);
        //execute
        $success = $question_insert_stmt->execute() or die ($mysqli2->error);
        //bind the id of the questionnaire that was just inserted
        $q_id = -1;
        $question_insert_stmt->bind_result($q_id);
        //fetch the id
        $data = $question_insert_stmt->fetch();

        //close the statement
        $question_insert_stmt->close();

    }

}
4

1 に答える 1