PHP Class Database Connection Scope Issue - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T00:48:40Zhttp://stackoverflow.com/feeds/question/138565http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/138565/php-class-database-connection-scope-issue1PHP Class Database Connection Scope Issuerofly2008-09-26T10:03:25Z2008-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#1385907Answer by cruizer for PHP Class Database Connection Scope Issuecruizer2008-09-26T10:07:49Z2008-09-26T10:07:49Z<p>you should declare $SQLConnection in your class, and you should refer to it as </p>
<pre><code> $this->SQLConnection
</code></pre>
<p>and not simply $SQLConnection.</p>
http://stackoverflow.com/questions/138565/php-class-database-connection-scope-issue/138591#1385911Answer by Greg for PHP Class Database Connection Scope IssueGreg2008-09-26T10:07:51Z2008-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#1385990Answer by Ólafur Waage for PHP Class Database Connection Scope IssueÓlafur Waage2008-09-26T10:10:41Z2008-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>