> How i can declare more than one client in mysequoia.conf? Suppose that

You can't. mysequoia.conf is supposed to contain defaults values if the value was not specified to the mysql_real_connect().

The application must supply the correct user, password, host, virtualdatabase values for the mysql_real_connect() function.

Example:

//connect to cluster 1, controllers are running on c1 and c2
mysql_real_connect(mysql, "c1 c2", "user1", "passwd1", "vdb1", ...);

//connect to cluster 2, controllers are running on c3 and c4
mysql_real_connect(mysql, "c3 c4", "user2", "passwd2", "vdb2", ...);

Regards,
Csaba


_______________________________________________
Carob mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/carob

Reply via email to