function Fetch($result="") { if (empty($result)) {$result = $this->result;} return mysql_fetch_assoc($result); }
} ?> [/CODE]
I create two objects in my index.php file:
[CODE] <?php session_start();
include('website/includes/connection.php'); $progdb = new connection("progdb"); $coredb = new connection("coredb"); ?> [/CODE]
If I do something like:
[CODE] $query = "SELECT Count(skuID) FROM sku"; $result = $coredb->Query($query); if ($result & mysql_num_rows($result) > 0) { //CODE } [/CODE]
It works, however doing the same with the progdb (with proper tables) does not, the Query function returns false.
BUT... if I swap the order in which they are created (so $coredb before $progdb) then the opposite is true, the progdb queries work but the coredb queries fail.
What am I doing wrong? I hope I have provided enough information. I am stumped.
YES!! I've waited SO LONG for us to have a scientific breakthrough that would allow us to bring armrests to our world from the EIGHT DIMENSION!! 8D armrests finally! Now my nemesis Captain Primo will never stop me! IGOR! PREPARE the DEATH RAY!!
I like mesh chairs like this, but not being able to lock in the back would make it not work for me. Also, I don't like arm rests at all. Can you not install them and the chair still work? Any recommendations on alternative chairs?
As before, my notes are in your quoted section. To be clear, you started posting racist, fascist nonsense. And I always challenge lies and the liars that peddle them.
Why? Because the truth matters.
Question
firey
Okay, so I am working on a website that will use 2 database connections. The connection class looks like:
I create two objects in my index.php file:
<?php
session_start();
include('website/includes/connection.php');
$progdb = new connection("progdb");
$coredb = new connection("coredb");
?>
[/CODE]
If I do something like:
$query = "SELECT Count(skuID) FROM sku";
$result = $coredb->Query($query);
if ($result & mysql_num_rows($result) > 0)
{
//CODE
}
[/CODE]
It works, however doing the same with the progdb (with proper tables) does not, the Query function returns false.
BUT... if I swap the order in which they are created (so $coredb before $progdb) then the opposite is true, the progdb queries work but the coredb queries fail.
What am I doing wrong? I hope I have provided enough information. I am stumped.
Link to comment
https://www.neowin.net/forum/topic/1136310-php-multiple-database-connections-causing-issues/Share on other sites
3 answers to this question
Recommended Posts