PHP Class Database Connection Scope Issue - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T00:48:40Z http://stackoverflow.com/feeds/question/138565 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/138565/php-class-database-connection-scope-issue 1 PHP Class Database Connection Scope Issue rofly 2008-09-26T10:03:25Z 2008-09-26T10:10:41Z <p>For a new project that I'm doing in PHP I've created an SQLMethods class to connect to the database and perform queries. Tonight was the first night that I actually got to test it (I wrote it a week or so ago and forgot about it) and an unexpected error occured: When it was calling my ExecuteQuery() function, it wouldn't use the database I selected in the constructor.</p> <p>The constructor:</p> <pre><code> public function SQLMethods() { $SQLConnection = mysql_connect($SQLDBAddress, $SQLUserName, $SQLPassword); if (!$SQLConnection) { die('Could not connect: ' . mysql_error()); } mysql_select_db($SQLDB, $SQLConnection); } </code></pre> <p>The function in question:</p> <pre><code> public function ExecuteQuery($Query) { mysql_query($Query, $SQLConnection) or die('Could not perform query: ' . mysql_error()); } </code></pre> <p>Does anyone see what the issue might be? Does the connection close after the constructor completes?</p> http://stackoverflow.com/questions/138565/php-class-database-connection-scope-issue/138590#138590 7 Answer by cruizer for PHP Class Database Connection Scope Issue cruizer 2008-09-26T10:07:49Z 2008-09-26T10:07:49Z <p>you should declare $SQLConnection in your class, and you should refer to it as </p> <pre><code> $this-&gt;SQLConnection </code></pre> <p>and not simply $SQLConnection.</p> http://stackoverflow.com/questions/138565/php-class-database-connection-scope-issue/138591#138591 1 Answer by Greg for PHP Class Database Connection Scope Issue Greg 2008-09-26T10:07:51Z 2008-09-26T10:07:51Z <p>$SQLConnection doesn't exist within the ExecuteQuery method, you need to either pass it as a parameter, or add it as a class-property in the contructor and access with $this->sqlConnection elsewhere.</p> http://stackoverflow.com/questions/138565/php-class-database-connection-scope-issue/138599#138599 0 Answer by Ólafur Waage for PHP Class Database Connection Scope Issue Ólafur Waage 2008-09-26T10:10:41Z 2008-09-26T10:10:41Z <p>The variable $SQLConnection ExecuteQuery() is trying to use is created within another scope. (The SQLMethods function).</p> <p>The connection closes when the PHP script has done its work or if you close it yourself (if the connection is made within that script)</p> <p>You should skip the $SQLConnection variable within ExecuteQuery as stated by the php.net documentation </p> <p>"If the link identifier is not specified, the last link opened by mysql_connect() is assumed."</p>