Erros aparecendo no código mysqli e call_user_func_array ()
Estou recebendo alguns erros ao tentar criar uma cláusula where dinâmica usando o mysqli:
Aviso: O parâmetro 2 para mysqli_stmt :: bind_param () deve ser uma referência, valor dado em ... na linha 319
Atenção: mysqli_stmt :: execute (): (HY000 / 2031): Nenhum dado fornecido para parâmetros na instrução preparada em ... na linha 328
Aviso: mysqli_stmt :: bind_result (): (HY000 / 2031): Nenhum dado fornecido para parâmetros na instrução preparada em ... na linha 331
Aviso: mysqli_stmt :: store_result (): (HY000 / 2014): Comandos fora de sincronia; você não pode executar este comando agora em ... on-line 332
Eu estou supondo que há uma pequena mudança que é necessária para resolver os problemas, mas o que acontece é que, se um dos dois drop-down menu não é igualAll
ou se ambos não são iguaisAll
então surge com os erros.
Abaixo está o código que exibe os menus suspensos e a consulta (com a cláusula dinâmica where) que segue dependendo das opções selecionadas:
HTML:
Menu suspenso Estudante:
<select name="student" id="studentsDrop">
<option value="All">All</option>
<option value="11">John May</option>
<option value="23">Chris Park</option>
</select>
Menu suspenso Número da pergunta
<select name="question" id="questionsDrop">
<option value="All">All</option>
<option value="123">1</option>
<option value="124">2</option>
<option value="125">3</option>
</select>
PHP / MYSQLI:
function StudentAnswers()
{
/*BELOW IS THE QUERY WHERE I AM TRYING TO RETRIEVE DATA DEPENDING ON THE ASSESSMENT CHOSEN AND
THEN DEPENDING ON OPTIONS CHOSEN IN STUDENT AND QUESTION NUMBER DROP DOWN MENU */
$selectedstudentanswerqry = "
SELECT
StudentAlias, StudentForename, StudentSurname, q.SessionId, QuestionNo, QuestionContent, o.OptionType, q.NoofAnswers, GROUP_CONCAT( DISTINCT Answer
ORDER BY Answer SEPARATOR ',' ) AS Answer, r.ReplyType, QuestionMarks,
GROUP_CONCAT(DISTINCT StudentAnswer ORDER BY StudentAnswer SEPARATOR ',') AS StudentAnswer, ResponseTime, MouseClick, StudentMark
FROM Student s
INNER JOIN Student_Answer sa ON (s.StudentId = sa.StudentId)
INNER JOIN Student_Response sr ON (sa.StudentId = sr.StudentId)
INNER JOIN Question q ON (sa.QuestionId = q.QuestionId)
INNER JOIN Answer an ON q.QuestionId = an.QuestionId
LEFT JOIN Reply r ON q.ReplyId = r.ReplyId
LEFT JOIN Option_Table o ON q.OptionId = o.OptionId
";
// Initially empty
$where = array('q.SessionId = ?');
$parameters = array($_POST["session"]);
$parameterTypes = 'i';
// Check whether a specific student was selected
if($_POST["student"] !== 'All') {
$where[] = 'sa.StudentId = ?';
$parameters[] =& $_POST["student"];
$parameterTypes .= 'i';
}
// Check whether a specific question was selected
// NB: This is not an else if!
if($_POST["question"] !== 'All') {
$where[] = 'q.QuestionId = ?';
$parameters[] =& $_POST["question"];
$parameterTypes .= 'i';
}
// If we added to $where in any of the conditionals, we need a WHERE clause in
// our query
if(!empty($where)) {
$selectedstudentanswerqry .= ' WHERE ' . implode(' AND ', $where);
global $mysqli;
$selectedstudentanswerstmt=$mysqli->prepare($selectedstudentanswerqry);
// You only need to call bind_param once
call_user_func_array(array($selectedstudentanswerstmt, 'bind_param'),
array_merge(array($parameterTypes), $parameters)); //LINE 319 ERROR 1
}
//Add group by and order by clause to query
$selectedstudentanswerqry .= "
GROUP BY sa.StudentId, q.QuestionId
ORDER BY StudentAlias, q.SessionId, QuestionNo
";
// get result and assign variables (prefix with db)
$selectedstudentanswerstmt->execute(); //LINE 328 ERROR 2
//bind database fields
$selectedstudentanswerstmt->bind_result($detailsStudentAlias,$detailsStudentForename,$detailsStudentSurname,$detailsSessionId,$detailsQuestionNo,
$detailsQuestonContent,$detailsOptionType,$detailsNoofAnswers,$detailsAnswer,$detailsReplyType,$detailsQuestionMarks,$detailsStudentAnswer,$detailsResponseTime,
$detailsMouseClick,$detailsStudentMark); //LINE 331 ERROR 3
//store results retrieved
$selectedstudentanswerstmt->store_result(); //LINE 332 ERROR 4
//count number of rows retrieved
$selectedstudentanswernum = $selectedstudentanswerstmt->num_rows();
//output query
echo "$selectedstudentanswerqry";
}
?>
Aqui está uma DEMO: DEMO
Na demonstração, selecione uma avaliação no menu suspenso e envie. Você verá os dois menus suspensos. Mantenha os dois comoAll
e enviar, ele irá gerar uma consulta sem problemas. Não em um dos menus suspensos, altereAll
para um aluno ou pergunta específica, depois envie. Agora você verá os erros
VAR DUMP:
O resultado dovar_dump(array_merge(array($parameterTypes), $parameters)));
quando escolhi sessão (avaliação) com valor31
, valor numérico do estudante40
e o valor do número da pergunta81
E ONDE CLÁUSULAWHERE q.SessionId = ? AND sa.StudentId = ? AND q.QuestionId = ?
:
Eu estou recebendo esta saída:array(4) { [0]=> string(3) "iii" [1]=> string(2) "31" [2]=> string(2) "40" [3]=> string(2) "81" }