How can i use
$stmt = $db->query($sqlString, MYSQLI_USE_RESULT);
but with prepare function? I need it, because i am using bind params, but now i need to also use MYSQLI_USE_RESULT for big data.
I need something like this:
$stmt = $db->prepare($sqlString, MYSQLI_USE_RESULT);