Page 1 of 1

MySQL-Link as instance variable

Posted: Thu Sep 09, 2010 3:42 am
by walle
Hey,

I'm trying to save a MySQL-Link source as an instance variable in my query class.
The problem is that MySQL sees it as an invalid MySQL-Link (supplied argument is not a valid MySQL-Link resource).
What I'm I doing wrong?

//Walle

Code: Select all

private $connection;
//Construct
public function __construct(&$connection)
{
  $this->connection = $connection; 
}

//Where the error occurs
public function exe_query($sql)
 {
  $result = mysql_query($sql, $this->connection);
  if(!$result) {
  throw new Exception(mysql_error());
 }
 return $result;
}

Re: MySQL-Link as instance variable

Posted: Thu Sep 09, 2010 4:34 am
by walle
Problem solved