I have a WordPress site that uses two databases — one section queries one database (“database_A”), and then WordPress makes its connection to its own database (“database_B”).
Everything it working well until I go to call this function:
$pageposts = $wpdb->get_results($querystr, OBJECT);
The WordPress suddenly selects the wrong database (“database_A”) when it was just using (“database_B”).
How do I (a) prevent it from selecting (“database_A”) or (b) make a call to have it select (“database_B”)?
The wpdb class in WP ha a select() method. You should just be able to call it directly.
You could also instantiate a second object that uses database_b:
You can create a new $wpdb-var, like this:
Now you can easily select items from the other database:
I hope it helps you :]
(edit: Are you sure it suddenly changes the database? I mean, is it using
database A
before it is usingdatabase B
, that’s almost impossible…)