I'm running a commercial(closed source) Web App development for the first time. Initially I considered MySQL the most feasible option for a DB, until I get quite confused about its dual license behavior.

If I want a commercial application do I still can use the GPL version of MySQL or I must get a license? The same question in a different way: If I use MySQL's GPL version does that force me to license the whole app under GPL?

Either case I would go with PostgreSQL, I just want to make really really sure about this. Even in SO I've seen related("duplicates") questions but never a clear answer...

All other tools I'm gonna use to code the project are licensed under BSD or MIT.

Just in case, the role of MySQL in the project is merely as relational DB to store persistent data and query it.

I'd really appreciate if someone can clarify this for me.

Regards, thanks in advanced.

link|improve this question

60% accept rate
As far as I understand it, dual licenses lets you choose which license you want to use. – Nick Feb 19 '11 at 7:11
feedback

4 Answers

If you're talking to a MySQL database in a commercial application, you can be sure a strict reading of their policies would require you to purchase a license for that to stay legal. The exact trivia of where and when you link at doesn't change the fact that the MySQL Licensing Policy has no place you fit into without paying them for a license. The FOSS License Exception is the main way people avoid that, but if you don't distribute source code to your application it no longer applies to you. And that's today; who knows how Oracle will change the licensing terms in the future.

I feel that with all that risk, you'd be crazy to start a new commercial application using MySQL. If you use PostgreSQL instead, you get a completely free database under The PostgreSQL License. That's somewhere between a BSD and an MIT one, but definitely has no commercial restrictions you need to be worried about, nor can such restrictions be added in the future.

Current MySQL users are suffering more each year from their decision to adopt a database that was never really free software. If you're developing commercial software, you have even more reason to be afraid of Oracle. Why even consider wandering down that path when there is an alternative that is friendly to commercial use?

link|improve this answer
feedback

MySQL's use of the GPL covers their code only.

If you are distributing a binary (compiled code), and that binary links against the access library provided by MySQL, then you are bound by the GPL.

If you are distributing a script designed to run on someone else's environment (Java, C#, Perl, Python, Ruby, PHP, etc), and that environment provides the library for you as part of the installation (or the library is provided as third party code that you are not distributing or bundling with your package), then you are almost certainly not not bound by the GPL, but check with a lawyer.

If your language/environment of choice (which you haven't mentioned the nature of) doesn't actually use MySQL's access library to connect to MySQL, then you're totally fine. For example, PHP 5.3 includes the mysqlnd driver, a PHP-licensed (effectively-)cleanroom implementation.

link|improve this answer
Ok! Right, I forgot to mention that the scripting language is PHP. So, if I don't include on my code any access library provided by MySQL I'm not bound to GPL, am I right? – horhay Feb 19 '11 at 7:33
@jromero - your code must not link to any MySQL access libraries. And that includes dynamic linking. If you can use access libraries that are not GPL'ed (or equivalent) you should be OK, at least as far as the GPL is concerned. – Stephen C Feb 19 '11 at 7:40
@Sthephen C - Understood, thanks for your time pal! – horhay Feb 19 '11 at 7:45
feedback

First thing to say is that the GPL is actually a simple license with clear terms. And the accompanying FAQs do a good job of explaining a wide range of questions.

And if that is not clear enough for you, you would be advised to talk to Oracle to ask them whether what you are proposing would require a commercial license.

If I want a commercial application do I still can use the GPL version of MySQL or I must get a license? The same question in a different way: If I use MySQL's GPL version does that force me to license the whole app under GPL?

It depends on the nature of your application, and what you are doing with it.

  • If you don't distribute your closed-source application outside of your organization, then you are free to do what you want with it. GPL's restrictions only apply if you distribute your software.

  • If your application is linked to GPL components of MySQL, you are not OK. Linking includes static linking, dynamic linking (via shared libraries / DLLs), and Java class loading.

  • If your application extends or modifies MySQL itself, you are not OK.

  • If your application simply uses scripts to run the mysql command (for example), you are OK ... because that does not involve linking.

For example, my understanding is that the Connector/J JDBC drivers are GPL'ed. If you used them in your Java application, you would be linking to them. And that would mean that you would be required to release your code under the GPL ... if you distributed it.

But hey, if you don't want to be part of the open source community, you / your company should not expect a free lunch ...

link|improve this answer
feedback

I see there's a postgresql tag here. Just to expand on the BSD license terms of postgresql, the basic rules are that it's free for any and all uses with no real restrictions.

link|improve this answer
The PostgreSQL License is BSD-like, but not actually BSD nor straight MIT. It's technically considered a MIT-style license. In 2010 the exact license was specfically approved by the OSI just to avoid any concerns in this area: opensource.org/licenses/postgresql – Greg Smith Feb 22 '11 at 11:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.