最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Communication in between WordPress database and another (not WordPress) database

programmeradmin9浏览0评论

I have a WordPress site running and I am making a data entry portal for our data entry operators to speed up their work (we need data entry portal to make sure we don't have duplicate entries). I have two databases one of WordPress and other one of data-entry-portal. I want to make some communication in between two, so any changes in any one DB reflects in other too. Can't use stored procedures and triggers due to structural difference in both databases. any other ideas on it?

I have a WordPress site running and I am making a data entry portal for our data entry operators to speed up their work (we need data entry portal to make sure we don't have duplicate entries). I have two databases one of WordPress and other one of data-entry-portal. I want to make some communication in between two, so any changes in any one DB reflects in other too. Can't use stored procedures and triggers due to structural difference in both databases. any other ideas on it?

Share Improve this question asked Mar 20, 2019 at 5:39 Hira AnwerHira Anwer 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

Two ways:
1. use the federated engine to enable one Mysql server to talk to the other;
2. have WordPress talk to both. Create a second wpdb object that talks to the non-WordPress database. This is quite possible, and you can give it non-WordPress-related queries. See Using wpdb to connect to a separate database for more.

The fly in the ointment is transactions. Actually, out-of-the-box WordPress doesn't even do transactions at all. That's a bigger issue with multiple servers. How to do that right would be good question by itself.

发布评论

评论列表(0)

  1. 暂无评论