I have MANY SQL databases I connect to while developing. This can and often includes:
- Virtual Machine
- DEV Master
- TEST Master
- PROD Master
During the course of developing, I realize I need to add a user, or add to some ENUM column or modify something else in my schema and I don't want to forget to do it later (as it will probably cause my PHP code to blow up), so I make the change right there on the spot as appropriate.
Loading up FOUR SQLYog Connections manually is tedious. It would be great if I could “group” these somehow so that I can load them all up at once. It is even more confusing since there are corresponding “Slave” connections (and even “Slave 1”, “Slave 2”, etc.), so I'm constantly having to look at the list to read the name of the connection and think about which is the right one. A group would solve this and any potential errors because, as you know, writing to a Slave can really ruin your day, or at least set you back some time as you get replication un-broken.