kambo/duckdb

A PHP library for communication with DuckDB

Fund package maintenance!
kambo

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 9

Watchers: 1

Forks: 0

Open Issues: 0

Language:C

0.7.0-alpha.1 2023-02-19 18:07 UTC

This package is auto-updated.

Last update: 2024-04-05 15:24:29 UTC


README

An unofficial DuckDB communication library for PHP.

Latest Version on Packagist Tests Total Downloads

Installation

You can install the package via composer:

composer require kambo/duckdb kambo/duckdb-php-linux-lib

Note: the kambo/duckdb-php-linux-lib package contains a binary library for Linux.

Usage

$database = new Kambo\DuckDB\Database();
$connection = new Kambo\DuckDB\Connection($database);

$connection->query('CREATE TABLE integers(i INTEGER, j INTEGER);');
$connection->query('INSERT INTO integers VALUES (3,4), (5,6), (7, NULL) ');

$result = $connection->query('SELECT * FROM integers;');

var_export($result->toArray());

Current limitations

  • This library is in alpha version.
  • It currently only works under Linux (work is ongoing for other platforms).
  • It has limited support of DuckDB APIs.

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

License

The MIT License (MIT). Please see License File for more information.