abrahanzarza/dbm
Composer 安装命令:
composer require abrahanzarza/dbm
包简介
Tool for database querying in PHP projects.
README 文档
README
This library provides mechanisms to connect to a database and perform queries easily and conveniently, leveraging all the advantages of the PHP PDO extension. It currently supports connections with MySQL, Postgres, and SQLite databases.
It was designed to be used in simple PHP projects but can also serve as the database layer for a more complex web application.
How to start
Install it in your PHP project using composer:
composer require abrahanzarza/dbm
With that you are ready to connect with your database.
MySQL database connection
$dbm = Dbm::build(
ConnectionType $type, //ConnectionType::MYSQL
string $host,
int $port,
string $user,
string $password,
string $database,
string $charset = 'utf8mb4',
);
Example:
$dbm = Dbm::build(ConnectionType::MYSQL, 'localhost', 3306, 'db_user', 'db_pass', 'database', 'latin1');
PostgreSQL database connection
$dbm = Dbm::build(
ConnectionType $type, //ConnectionType::PGSQL
string $host,
int $port,
string $user,
string $password,
string $database,
);
Example:
$dbm = Dbm::build(ConnectionType::PGSQL, 'localhost', 3306, 'db_user', 'db_pass', 'database');
SQLite database connection
$dbm = Dbm::buildForSqlite(
string $dbFilePath, //The database file location
);
Example:
$dbm = Dbm::buildForSqlite(__DIR__ . '/database.sqlite');
How to use
Once you have been connected successfully following the previous steps, you can work with your database.
The read method
This method must be used for all read operations with your database, for example:
$result = $dbm->read('SELECT * FROM users');
The
$resultvariable contains an array with all records of the users table.
Available parameters
| Name | Type | Description | Optional | Default value |
|---|---|---|---|---|
| $query | string | The database query | No | |
| $parameters | array | Bind params for your query | Yes | [ ] |
| $singleRow | bool | Returns only a single row | Yes | false |
The write method
This method must be used for all write operations with your database, for example:
- Insert one user:
$dbm->write(
'INSERT INTO users (id, name) VALUES (:id, :name)',
[':id' => 2, ':name' => 'Jane']
);
- Update the user:
$dbm->write(
'UPDATE users SET name = :name WHERE id = :id',
[':name' => 'Lorem', ':id' => 2]
);
- Delete the user:
$dbm->write('DELETE FROM users WHERE id = :id', [':id' => 2]);
- Also, drop the users table:
$dbm->write('DROP TABLE users');
Available parameters
| Name | Type | Description | Optional | Default value |
|---|---|---|---|---|
| $query | string | The database query | No | |
| $parameters | array | Bind params for your query | Yes | [ ] |
| $returnLastInsertId | bool | Returns the last insertion ID | Yes | false |
Authors
- Abrahan Zarza. The project creator and maintainer.
abrahanzarza/dbm 适用场景与选型建议
abrahanzarza/dbm 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 11 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「sql」 「library」 「mysql」 「query」 「pdo」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 abrahanzarza/dbm 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 abrahanzarza/dbm 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 abrahanzarza/dbm 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Query filtering in your frontend
Inbox pattern process implementation for your Laravel Applications
Database/ORM-agnostic query construction helper
Laravel SQL Queries Dumper
Core library that defines common interfaces used by the rest of the intahwebz..
Amqp classes
统计信息
- 总下载量: 4
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 18
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-11-16