If I distribute my own client app under commercial license which interacts with MySQL Community Edition (GPLv2) which located on my server is it require GPL for my client app? How can I distribute my app safely without GPL for my customers? As I understood I need MySQL commercial license only if distribue with MySQL embeded. Is GPL required for my app if it only "makes a connection to"?

link|improve this question

My understanding is, that you cannot even distribute the MySQL connectors with a commercial license. Anything that is designed to work with MySQL (and calls MySQL APIs) is considered a "derivative work". But I am not a lawyer and I could be completely wrong. – a_horse_with_no_name Aug 31 '11 at 7:22
feedback

2 Answers

up vote 2 down vote accepted

The following is my personal view but not the ultimate truth in every jurisdiction:

The safest solution is that you do not distribute the MySQL client libraries at all yourself. If you are not distributing them, you can not possibly be bound by their license restrictions.

Just provide detailed instructions which describe how to download and install the required libraries and let your users do it.

UPDATE:

Regarding the database that you provide as a service through the network: it does not make any difference.

As long as you are not distributing any GPL code, you are safe.

It could become more complicated if MySQL was using GNU Affero license, but it is not.

UPDATE 2:

If you Google for "gpl dynamic linking" and read several articles, you will find out that the issue regarding dynamic linking is unclear even in USA. Thus there is no definite answer to this question unless you go to court with Oracle in your jurisdiction. This is very convenient for their sales and they like you to be scared.

I am not based in USA. I do not know where you are. In my jurisdiction a claim that just making a compatible interface to a library, which is not distributed, creates a derivative work would not go through. I would like to note that there are tons of programs which are compatible with MySQL and you do not see any trouble coming out of that.

link|improve this answer
Is it push licensing headache down to my clients? Is it required for them in this case to buy a licencse for using MySQL with commercial software? – johnny Aug 31 '11 at 13:15
No, unless they distribute the licensed works themselves. Using and modifying GPL programs for own or company's internal purposes is always free and allowed as long as it is not being distributed. – snap Aug 31 '11 at 13:47
snap: mysql.com/about/legal/licensing//commercial-license.html "Selling software that requires customers to install MySQL themselves on their own machines." ...I'm little confused – johnny Aug 31 '11 at 17:55
Yes, of course they would like to sell you even in that case. Whether you need to care about that or not may depend on your jurisdiction. Also on the same page: "To anyone in doubt, we recommend the commercial license. It is never wrong." as well as "The final judgment, of course can be made only by a court of law.". You should probably contact a lawyer if the situation is not clear to you after reading the GPL. – snap Aug 31 '11 at 18:49
Thank you, snap – johnny Sep 1 '11 at 9:49
feedback

+1 to @snap for his good answer, and I'll add another concrete example:

PHP's license is a derivative of the New BSD license, which is not compatible with GPL. So PHP distributions could not include the MySQL client library; users had to go download it separately. In that way, both PHP and users were in compliance with the GPL license, because only MySQL.com was distributing the MySQL software.

A few years ago, MySQL developed a new client library specifically for PHP, which utilized PHP internals for resource management, but perhaps even more importantly was licensed under the PHP license, which allowed it to be bundled with PHP distributions.

This means if your project is written in PHP, you can use and distribute the MySQLnd client library in a commercial project -- and in fact there are good technical reasons you should do so anyway because it's optimized for PHP.

link|improve this answer
+1 for MySQLnd. There is a rumor that a new LGPL client library in C is in the works. That should solve all linking uncertainties for the C API. Then there is also libdrizzle with a BSD license but there is zero documentation for it and it does not seem very popular. – snap Sep 1 '11 at 5:03
feedback

Your Answer

 
or
required, but never shown

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