Tagged Questions

14
votes
4answers
336 views

What does it mean when open source projects (like MySQL) get sold

I've always released my personal code, all of which are small projects, under a GPL license. My reasons are more about personal preferences, but now I'm trying to understand the dynamics of open ...
9
votes
8answers
2k views

MySQL licensing and GPL

As far as I know, when I build a desktop/server app using any GPL code like MySQL I will have to release the source code of my software under the GPL. If I want to develop a web-app using MySQL, my ...
5
votes
1answer
354 views

MySQL + Qt QMYSQL plug-in = commercial MySQL license?

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 ...
5
votes
2answers
1k views

MySQL Licensing in a Commercial Web Application using Hibernate

I am evaluating the prospect of developing a commercial java web application using Hibernate as the ORM framework. This application would be installed on a customer's server and would be used by a ...
3
votes
3answers
114 views

GPL open source along with a EULA

My software product is a desktop application that makes use of MYSQL, itext and other GPL licensed Products. I understand that now my software product would have to become open source. I am going to ...
3
votes
4answers
449 views

Legal question about the GPL license + .NET dlls

We're considering using MySQL in a .NET project. We're aware that there's a connector available on mysql.com that's dedicated to .NET, and that it's under a GPL license. We're having trouble ...
3
votes
5answers
701 views

GPL and libmysqlclient

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 ...
3
votes
8answers
1k views

About MySQL++, GPL and LGPL

MySQL++ is licensed though LGPL, that means that I could release an executable dynamically linked against it without worrying about the source code not being GPL. But, MySQL++ DOES link against ...
2
votes
2answers
120 views

Client side app and MySQL GPL

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 ...
2
votes
1answer
79 views

Non-GPL MySql connectivity from Java via Hibernate?

I want to write a Java program that connects to MySQL using Hibernate, but I don't want my code infected by GPL, is there an Open Source library out there with permissive terms that will allow me to ...
2
votes
2answers
340 views

MySQL Support for Python that's not under GPL-Like Licenses

I'm using Python/Django over MySQL. I'm currently working with MySQLdb that's under GNU GPL license. Is there a library with "similar" capabilities that's not under GPL-like licenses? To clarify: I ...
1
vote
4answers
192 views

MySQL dual license behavior

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 ...
1
vote
1answer
227 views

What's the meaning of “derived” in “GPL require derived works to be released under the same terms”

The GPL and AGPL require derived works to be released under the same terms,I don't understand the terms of "derived",what is the meaning of the "derived".If I develop a client software of mysql(mysql ...
1
vote
2answers
286 views

GPLv3 License use case

If I use Tigase(xmpp server demon) on my server (not distributing it) and build custom plugin(stay within server). Do I have to release my source codes? What if my website have google adsense and If I ...
1
vote
2answers
143 views

Is the MySQL FOSS License Exception transitive - does it remove the GPL restrictions for downstream clients?

I'm looking at building a MySQL client plugin for a proprietary product, which would violate the GPL as discussed in the FAQ at http://www.gnu.org/licenses/gpl-faq.html#NFUseGPLPlugins However, ...
1
vote
1answer
502 views

Understanding MySQL Connector/J's FOSS exception

I have to create an application which transfers data from a local workstation into a remote MySQL database. Unfortunately my boss doesn't want to pay for a commercial license, because it's not a ...
0
votes
5answers
175 views

What version and how to use free MySQL DBMS in commercial projects?

Currently, MySQL community edition server 5.5.16 is under GPL. This means that it might be used in projects that are open source projects too. Our project budget is very tight and we need to find a ...
0
votes
3answers
158 views

Connecting to MySQL in Java without having to go GPL

I am writing a piece of software in Java that needs to connect to an online database in order to collect some information! I want to sell this software under my company, but the problem is Oracle has ...
0
votes
2answers
142 views

Is there any MySQL driver for C/C++ which is not GPLed?

I need to open a connection to a MySQL database from a commerical distributed closed source program. I know that Ruby has rewritten the mysql driver in pure ruby and that PHP 5.3 also comes with its ...