I have to create an application which transfers data from a local workstation into a remote MySQL database.
Unfortunatly my boss doesn't want to pay for a commercial license, because it's not a critical application and we wouldn't make any money of it, but still he doesn't want to put the full source under GPL. (Please don't comment on this attitude, I don't share it)
On the other hand I'd really like to do this project for my personal experience, so please forgive me if this question makes me look like a freeloader.
Here's my question:
Would creating an additional layer with a liberal open source license, like MPL or LGPL, fulfil the conditions of the FLOSS exception?
Example:
Closed-source Java application -- uses -->
MPL JDBC connector -- uses -->
GPL'ed MySQL Connector/J
I guess this would pretty much defy the spirit of the FLOSS exception, it would be a legal application of the facade pattern :)