Sia il server che il programma client richiedono una GPL quando si utilizza un database MySQL solo dal lato server

3

Sto costruendo la mia prima app e ho raggiunto un punto in cui sto pensando di passare a un database MySQL. Tuttavia, ho notato la GPL sulla versione comunitaria di MySQL. Così ho fatto qualche aggiramento e ho notato che era anche il connettore fornito per connettere MySQL a Python.

Se questo connettore sta entrando nel codice del mio server, il server (sicuramente) deve essere sotto la GPL.

La mia domanda, quindi è; anche il mio cliente deve essere sotto la GPL, o sono libero di usare una licenza Creative Commons sopra C0?

    
posta Shay Brynes 06.09.2016 - 23:15
fonte

1 risposta

2

Ci sono diversi connettori tra Python e MySQL sotto varie licenze. Ecco alcuni dei più popolari:

  • MySQL Connector / Python (il connettore "ufficiale") ha una doppia licenza allo stesso modo di MySQL stesso: tu puoi scegliere una licenza commerciale o GPL-2.
  • MySQL-python è a doppia licenza in GPL e la più permissiva licenza Python 1.5.2 (vedi sotto).
  • PyMySQL è concesso in licenza MIT.

Se decidi di creare il codice server GPL, anche il client deve essere rilasciato sotto licenza GPL? Questa è una domanda difficile e dipende dal fatto che il server e il client debbano essere considerati due parti dello stesso programma che si verifica solo per comunicare attraverso la rete, o se sono due programmi separati ma interoperabili. Vedi Posso utilizzare commercialmente il software con licenza GPL sul mio server se sto solo distribuendo il software client?

Risposta originale che spiega la doppia licenza di MySQL-python:

Il README fornito con l'origine MySQL-python-1.2.3 lo afferma nella sezione Licenza:

License
-------

GPL or the original license based on Python 1.5.2's license.

Non sono sicuro di quale sia esattamente la "licenza originale basata sulla licenza di Python 1.5.2", tuttavia Python 1.5.2 è stato rilasciato con una licenza CWI modificata, che è una licenza permissiva senza copyleft:

Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Stichting Mathematisch
Centrum or CWI or Corporation for National Research Initiatives or
CNRI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior
permission.

While CWI is the initial source for this software, a modified version
is made available by the Corporation for National Research Initiatives
(CNRI) at the Internet address ftp://ftp.python.org.

STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
    
risposta data 07.09.2016 - 03:02
fonte

Leggi altre domande sui tag