vote up 2 vote down star

Is it possible for certain models to be in one database and other models in another (using the same connection)?

I have a number of read-only tables that I want shared between multiple installations of my system. Other tables need to be per-installation. For the sake of example, let's say users is the shared table, and posts is per-installation.

In one schema (let's call it "shared") we have the users table, and in another schema ("mycake") is posts.

I've been able to get the User model reading from the other database by creating a new database connection which points to the shared database (though the two databases are on the same host and are both accessible with the same login details).

class User extends AppModel {
    var $useDBConfig = 'sharedConnection';
}

The problem is when it comes time to join to the posts table. It doesn't prepend the schema name to the table name, and so it can't find posts.

// what it does
SELECT * FROM users User INNER JOIN posts Post ...

// what I'd like it to do:
SELECT * FROM shared.users User INNER JOIN mycake.posts Post ...

So basically, is there a way to assign a fully qualified table name to a model and force it to use that in all its queries? Setting var $useTable = 'shared.users'; doesn't help...

flag

71% accept rate
This is a good question. When choosing a framework (in PHP), I always check if the framework will allow this. – wenbert Nov 24 at 5:52

3 Answers

vote up 1 vote down

This site has a way to do it, but it's a little hacky

link|flag
heh - "little" is a bit of an understatement. I'll give it a shot anyway. – nickf Nov 24 at 6:17
It's a bit outdated, but I was able to hack it together to get it working. – nickf Nov 24 at 7:12
good to hear =) – Galen Nov 24 at 16:56
vote up 1 vote down

There's a solution available here: http://foldifoldi.com/news/?p=436

link|flag
vote up 0 vote down

I've built a site in CakePHP that has models using different databases and I never had problem with joins across different databases - the framework seemed to take care of all that for me. Though you might need to explicitly state the database tables used in your models to get it to work.

link|flag
how did you do that? – nickf Nov 24 at 14:52
I just used different login details for each database. From memory when they shared the login there were problems. – Mathew Attlee Nov 27 at 8:42

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.