Other News

Community

MariaDB 10 is a Sandbox killjoy?

(Giuseppe Maxia) Using MySQL Sandbox I can install multiple instances of MySQL. It is not uncommon for me to run 5 or 6 instances at once, and in some occasions, I get to have even 10 of them. It is usually not a problem. But today I had an issue while testing MariaDB, for which I needed 5 instances

Editorials

MySql Enumeration Data Type

Enumerations are popular in most modern programming lanugages because they do away with “Magic” numbers. A number has a strongly defined definition verified at compile time. Problems occur when you attempt to keep those enumerations synchronized with values in your database. I was looking at the Enumeration data type found in MySql hoping to find a solution to Enumeration synchronization. […]