Re: A pdo extension for TDengine database

[email protected] ("Christoph M. Becker") Fri, 14 Jan 2022 18:32:31 +0100
Newsgroups php.pecl.dev
Message-ID <[email protected]>
On 13.01.2022 at 14:04, 张 振强 wrote:

> I use Swoole for IoT projects at work. I recently discovered an efficient IoT database TDengine, but found that there is no PHP extension. So based on the official C language document and the client source code, I develop the PDO extension, hoping to publish it on PECL, so that more people can use it to solve the storage and analysis problem of IoT device logs.
>
> URL: https://github.com/bearlord/pdo_taos

Thanks you, that's interesting! :)

However, the Publishing in PECL page[1] states:

| wrappers for GPL (all versions) or LGPLv3 libraries will not be
| accepted.

I assume this is also the case for AGPLv3.  And from my layman
understanding, you are not allowed to wrap an AGPLv3 licenced library
under a more liberal license (such as the PHP license) anyway, unless
you have explicit permission by the copyright holders.

[1] <https://pecl.php.net/account-request.php>

Christoph