mittnett/dbal
Composer 安装命令:
composer require mittnett/dbal
包简介
A very simple database abstraction layer. Uses PDO under-the-hood and supports mysql/mariadb and postgres.
README 文档
README
A very simple database abstraction layer. Uses PDO under-the-hood and supports mysql/mariadb and postgres.
Usage
Setup a connection:
<?php // MySQL: $db = new \HbLib\DBAL\DatabaseConnection(new PDO('mysql:host=localhost;dbname=app', 'app', 'secret'), new \HbLib\DBAL\Driver\MySQLDriver()); // Postgres: $db = new \HbLib\DBAL\DatabaseConnection(new PDO('pgsql:host=localhost;dbname=app', 'app', 'secret'), new \HbLib\DBAL\Driver\PostgresDriver());
One can use \HbLib\DBAL\LazyDatabaseConnection which only creates the PDO connection when needed.
统计信息
- 总下载量: 45
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-10-08