开发者

How to declare many-to-many relationships if the join table is in a different database?

开发者 https://www.devze.com 2023-01-09 06:26 出处:网络
For example, posts table is in db1, categories table and category_post_join table are in db2. How to declare a many-to-many relationship between Post model and Category model?

For example, posts table is in db1, categories table and category_post_join table are in db2. How to declare a many-to-many relationship between Post model and Category model?

'c开发者_StackOverflow中文版ategories'=>array(self::MANY MANY, 'Category', 'category_post_join (post_id, category_id)')

works only if all tables are in the same database.


I don't think that's possible. The CActiveRecord functionality is based on a physical PDO connection, which is linked to a specific database. There is no support for doing a join across multiple database that I know of. I actually ran into the same problem a while ago and had to work around it.

I really hope there is a possible answer here, but I haven't found one so far.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号