I have an application, it uses the libmysqlclient.so I wonder if I need GPL license on this application due to libmysqlclient be GPL or if I can continue the program in closed source

EDIT: According to this site, I can use the libmysqlclient in a closed-source software.

Just do not understand why the GPL "infects" the code so much ...

EDIT2: If a library is released under the GPL (not the LGPL), does that mean that any program which uses it has to be under the GPL or a GPL-compatible license?

link|improve this question
Read the license yourself. It is probably LGPL, but in any event it is a legal document so you should read it. GPL and LGPL are pretty clear in English, and I'll bet there are good translations in many languages. – GregS Jan 10 '10 at 22:25
It is not LGPL. – Yann Ramin Jan 10 '10 at 22:46
Osmano807, regarding your EDIT2: yes, and I have explained that in my answer. I also commented on your the - wrong - conclusion you drew from XAPRB's blog article. Like I said, read the first three comments on that blog. You may use libmysqlclient and link it to your program, even in your closed source software. But when you distribute your software you must obey the GPL and release your software as GPL too (or buy a non GPL license - that's why MySQL licensing is called dual licensing) – Roland Bouman Jan 11 '10 at 1:13
Why on earth would you use "libmysqlclient" when there is SOCI? SOCI btw uses a true free license unlike other libraries which use GPL. – Matthieu N. Jan 11 '10 at 4:53
SOCI links to libmysqlclient so it's also GPL – clarkevans Nov 30 '11 at 20:51
feedback

5 Answers

up vote 0 down vote accepted

libmysqlclient, the JDBC connector, and other libraries to interfacing to MySQL are GPL (GPLv2). Strict reading of the license would show that you need to distribute your source code under the GPL.

There is the FLOSS exemption, which allows any open source license to include libmysqlclient, however this does not apply to you.

Sun/Oracle aggressively license the connector libraries and server components, and in my experience are quite expensive. There are some tricks you can use, such as a query proxy server - simply launch a child process which can transform your own SQL commands to libmysqlclient. You will need to ship the source of the proxy, but its a self contained piece.

link|improve this answer
feedback

There has always been a lot of confusion and FUD around this issue.

First off, libmysqlclient is GPL 2, not LGPL, (which would argueable be more in line with it being a library). However, there is a so-called FLOSS exception in effect, which allows free and open source projects to use and distribute libmysqlclient without having to adopt the GPL license.

In your case, I think you may only link to (and/or distribute) libmysqlclient if your application is also GPL, or goes by another open source license (as per the FLOSS exception)

link|improve this answer
feedback

There are exceptions to this, but GPL usually requires that you open source your project too and use an open source licence that's compatible with GPL. GPL is surprisingly restrictive in that aspect x_x

link|improve this answer
No, the GPL does not require you to distribute your code if you don't want to. It merely states that if you were to distribute your modifications, then they would have to be under a compatible licence. – Rob Jan 10 '10 at 23:43
Are you sure about that? Clause 3 seems to be pretty specific about the necessity of distributing derived works along with the source code or an offer to make it available on request. – mingos Jan 10 '10 at 23:59
@Rob You're required to distribute your code , under the GPL license,to your users/customers if they want it.(You don't have to distribute your code to anyone other than your customers/users, upon request. Those receiving your source code can ofcourse distribute it any way they like as long as they adhere to the GPL) – nos Jan 18 '11 at 20:25
feedback

According to this site, I can use the libmysqlclient in a closed-source software.

Just do not understand why the GPL "infects" the code so much ...

link|improve this answer
That site says nothing of libmysqlclient... it is only speaking of MySql proper. – joshperry Jan 10 '10 at 23:49
Look at the first three comments. And those only relate to connecting via a nicely separated driver. In the OPs case, it goes a step further: linking. To sum it up: You can link (as in compile time references) to GPL code, but once you distribute your work, you must distribute your code too as GPL. As long as you don't distribute your work, you can use it, even if your code is not GPL. – Roland Bouman Jan 11 '10 at 0:24
feedback

libmysqlclient is indeed GPLv2 and you either need to GPL your code that calls this library, or buy a commercial license from Oracle.

However, if use ODBC instead you can write your application to the ODBC API which is NOT GPL. Your customers can then choose to install the MySQL ODBC Driver or any other driver.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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