0
votes

I have multiple store in Magento, each store have different domain.

I'm wondering can Magento read 2 or more different databases, e.g for product and catalog for each store?

Because the default Magento just input all of products for each store in one database, I think this is very slow...

Can anybody help me?

Thanks

Regards

ian

1
hello, not an external database, but magento database, 1 management user but different database product for each store :)Fana Barkah A

1 Answers

0
votes

I'm not fimilar with Magento, and I am not fond of using more than one database, but you can check out this artical here about it:

How do you connect to multiple MySQL databases on a single webpage?

Also you could just use different tables in a database and put in your query some thing like:

$query = mysql_query("SELECT * FROM table1")

anything like that