i think many would love to know this. I searched on the net and the stack and while this has been discussed on the stack before, it has not been with regards to Qt... nor in the same context.
Qt is LGPL.
This means that (as long as you do not modify Qt):
(1) commercial dev does not require a commercial license($) for just using Qt.
(2) DON'T need to give away your applications src code to anyone that asks for it.
Oracle MySQL is GPL.
This means that (even if you do not modify MySQL) -- Interpretation A:
(1) commercial dev requires a commercial license (min $2000/year) for just using MySQL.
(2) HAVE to give away your applications src code to anyone that asks for it.
This means that (even if you do not modify MySQL) -- Interpretation B:
(1) commercial dev DOES NOT requires a commercial license ($) for just using MySQL.
(2) HAVE to give away your applications src code to anyone that asks for it.
This means that (as long as you do not modify MySQL) -- Interpretation C:
(1) commercial dev DOES NOT requires a commercial license ($) for just using MySQL.
(2) do not need to give away your applications src code to anyone that asks for it.
While the LGPL is clear, there is a lot of confusion about the GPL. I would like to know which version of the GPL interpretation is correct (A, B, or C). I'm sure there are some professionals here who do know this.
My personal understanding of the GPL is that the GPL was written with regards to library linking (code re-use...and not application use). That is, if you use some code, or you extend some code to make an app, what are your rights/limmitations and the rights of everyone else. I don't believe the GPL refers to limiting your usage of GPL pplications. Correct me if I am wrong.
For example, most of LINUX is GPL. If I do development on Linux do all my applications have to be GPL? I would think that such an interpretation is not accurate. So I would think there is a difference between using a GPL application and using/re-using GPL src code.
By extension of the above example, if I use the application called MySQL... why would MySQL's GPL license infect any application I wrote merely because it uses the MySQL database to store and retrieve data? What is the difference between this and using Linux to develop?
Now, getting to my point of confusion, and what the post is about. In answer to my last question, I have seen some confusing verbiage that how one links to the MySQL database matters. I don't understand this... though I think the general idea is that the API used to link to MySQL may also be GPL. Rather than covering every scenario, let's be API specific.
What lib am I using in Qt? I am following the Qt instructions to build the QMYSQL (MySQL Driver). http://doc.qt.nokia.com/latest/sql-driver.html This build process relies on some files supplied by MySQL (which may be GPL). I don't know in what sense is Qt using the term "driver". From my point of view a "driver" is an underlying engine that allows something to work and thus I don't see what it has to do with my application any more than installing some GPL driver in LINUX so I can boot LINUX and do some commercial coding. I also don't understand why Qt makes people "build" the QMYSQL plug-in. Is it for technical reasons or due to a license reason? For controlling MySQL, I use the Qt "QSqlDatabase" & "QSqlQuery" classes.
Therefore, if I --USE-- MySQL for data storage and my commercial application uses Qt to manage, store, retrieve, update the data in my MySQL database, which of the above GPL license interpretations above is correct (A, B, or C)?
*Final note. I know people associate MySQL with websites. Let's for the context of this topic think MySQL is for business applications also... not just websites. The major diff between the two is that a website requires a central DB and a business application may require each customer to have their own DB deployment. At the end of the day it is only storing data (either way). As far as I know It is not against the GPL to include MySQL on the same install disc as the commercial closed-source app, have the installer install it and then the closed source app make the DB and tables. Correct me if I'm wrong. .