Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Call to a member function bind_param() on a non-object (unable to solve despite research) [duplicate]

Tags:

php

mysqli

$stmt = $mysqli->prepare('select Un from member where Lock = ? and Activated = ?');
$stmt -> bind_param("ss", 'N', 'Y');//This line gave the error
$stmt -> execute();
$stmt->store_result();//apply to prepare statement
$numRows = $stmt->num_rows;

if ($numRows > 0)//if have result
 while ($row = $stmt->fetch())

my above code gave me a "Call to a member function bind_param() on a non-object" error. I really don't get it why i getting this error. I have correct cols name.

I am new to mysqli and would like to learn how to debug such error.

  1. what is the problem with my prepare statement or bind_param()?
  2. Please teach me how to debug such error
like image 461
Jerry Avatar asked Dec 05 '22 21:12

Jerry


2 Answers

Call to a member function bind_param() on a non-object means that $stmt, which you're trying to call bind_param on, is not an object. Why is it not an object? Because $mysqli->prepare did not return an object. Why did it not return an object?

mysqli_prepare() returns a statement object or FALSE if an error occurred.
http://www.php.net/manual/en/mysqli.prepare.php

So that means an error must have occurred. You should turn on error_reporting, which will probably tell you, or examine $mysqli->error(), which may tell you as well.

like image 116
deceze Avatar answered Dec 10 '22 11:12

deceze


$stmt->bind_param("ss", 'N', 'Y');//This line gave the error 

Here you need to sure about data type in database.

like image 30
Musleh Uddin Avatar answered Dec 10 '22 10:12

Musleh Uddin