Currently, MySQL community edition server 5.5.16 is under GPL. This means that it might be used in projects that are open source projects too. Our project budget is very tight and we need to find a solution to use MySQL free edition in commercial project. I have several questions:
1) What earlier MySQL version would be solid and bug-free enough to use in commercial projects?
2) About using current MySQL community edition server 5.5.16 with GPL: if a project software architecture is designed with support for plugging many DBMSs then is it legal to have a project software under non-GPL license? I mean, suppose the software is designed with multiple DBMS support and the software is put under commercial license. If the client chooses to use MySQL GPL version does he violate GPL license?
3) I heard some negative replies about PostgreSQL being buggy and non-optimized for modifying and storing large sets of data. The only reason it's still used in some small commercial projects is because it's free. What are your opinions on that?
UPDATE: also, we are planning to use several servers, so master-slave replication is also needed.
UPDATE2: I heard about one case: there was used ~1GB PostgreSQL DB. The database was heavily used with updates by modifying almost all data. The problem was the database was constantly growing about ten times every 2.5 month. They have used PostgreSQL 8.3 + CentOS. Also, AUTOVACUUM was used. After dumping database, destroying the old one, recreating database and importing they were able to reduce its size ~10 times. Existing posts (here and here) show that this problem is relative even in latest PostgreSQL 9 version. I wouldn't call it a normal behavior and such size growth is not acceptable in our case.
UPDATE3: thank you all for the answers. All answers are relative and useful for the question.