FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » determine a mysqli_result object
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
determine a mysqli_result object [message #181268] Sat, 27 April 2013 23:11 Go to previous message
Scott Johnson is currently offline  Scott Johnson
Messages: 196
Registered: January 2012
Karma:
Senior Member
I have a class that I am converting from mysql to mysqli in PHP 5.2.x

The problem I ran into is this.

Previously I could check the mysql_query if it return a resource by using:

is_resource($resource)

and could parse the resource using mysql_fetch_assoc or similar

and if it was an insert, update, etc.. it would not return a resource
and I would just return a true and carry on.

Now with mysqli it return a mysql_result object.

How do I check for this so I know whether to parse or return

Thanks

Here is a nutshell of what was using for mysql

// Already connected to mysqli

public function query($query){
$resource = $this->connection->query($query);

if($resource) {

if(is_resource($resource)) { // parse

$data = array();

$idx = 0;

while($result = $this->connection->fetch_assoc()) {

$data[$idx] = $result;
// Object assembly

}
} else { // return

// update, insert, etc..
return true;

}
} else {
// error
}
}

Scotty
[Message index]
 
Read Message
Read Message
Previous Topic: Undefined variable
Next Topic: Got a chuckle and wanted to share.
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sun Nov 24 17:45:25 GMT 2024

Total time taken to generate the page: 0.18578 seconds