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"?
feedback
|
|
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. | |||||||||||
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. | |||
feedback
|