Download the PHP package stereoflo/dbal-clickhouse without Composer
On this page you can find all versions of the php package stereoflo/dbal-clickhouse. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download stereoflo/dbal-clickhouse
More information about stereoflo/dbal-clickhouse
Files in stereoflo/dbal-clickhouse
Download stereoflo/dbal-clickhouse
More information about stereoflo/dbal-clickhouse
Files in stereoflo/dbal-clickhouse
Vendor stereoflo
Package dbal-clickhouse
Short Description Doctrine DBAL driver for ClickHouse
License MIT
Package dbal-clickhouse
Short Description Doctrine DBAL driver for ClickHouse
License MIT
Please rate this library. Is it a good library?
Informations about the package dbal-clickhouse
Installation
Initialization
Symfony
configure...
...and get from the service container
private Connection $connection;
public function __construct(Connection $connection)
{
$this->connection = $connection;
}
/**
* @return array<array<string, string>>
*/
public function getByUserId(int $userId): array
{
$result = $this->connection
->createQueryBuilder()
->select('user.user_id')
->from('users', 'user')
->where('user.user_id = :user_id')
->setParameter('user_id', $userId)
->executeQuery();
return $result->fetchAllAssociative();
``
All versions of dbal-clickhouse with dependencies
PHP Build Version
Package Version
The package stereoflo/dbal-clickhouse contains the following files
Loading the files please wait ....