ezrarieben/pdo-wrapper-singleton
Composer 安装命令:
composer require ezrarieben/pdo-wrapper-singleton
包简介
A wrapper class written for PDO MySQL DB connections following the singleton pattern
README 文档
README
A wrapper class written in PHP for PDO MySQL DB connections following the singleton pattern.
Table of contents
Installation
To use the wrapper in your project, add it as a dependency via composer:
composer require ezrarieben/pdo-wrapper-singleton
Basic example
use \ezrarieben\PdoWrapperSingleton\Database; Database::setHost("localhost"); Database::setUser("user"); Database::setPassword("123456"); Database::setDbName("foobar"); try { $query = "SELECT * FROM `cars` WHERE `color` = ?"; $stmt = Database::run($query, ['red']); $row = $stmt->fetch(); } catch (\PDOException $e) { die("PDO ERROR: " . $e->getMessage()); }
Usage
Importing wrapper class
For ease of use it is recommended to import the wrapper class with use
use \ezrarieben\PdoWrapperSingleton\Database;
Setting up DB connection
In order to use the wrapper class Database the connection parameters need to be set first.
There are certain required parameters that need to be set in order for the PDO connection to work.
(See "Required" column in available parameters table for required parameters).
Minimal setup example
Database::setHost("localhost"); Database::setUser("user"); Database::setPassword("123456");
Extensive setup example
Database::setHost("localhost"); Database::setPort(3307); Database::setUser("user"); Database::setPassword("123456"); Database::setDbName("foobar"); Database::setPdoAttributes(array( PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_OBJ, ));
Available parameters
| Description | Setter function | Parameters | Required |
|---|---|---|---|
| DB server host | setHost() |
string $host |
YES |
| User | setUser() |
string $user |
YES |
| Password | setPassword() |
string $password |
YES |
| DB server host | setPort() |
int $port |
|
| Database name | setDbName() |
?string $dbName |
|
| PDO attributes | setPdoAttributes() |
array $attributes |
DB interaction
Using PDO functions
All PDO functions can be accessed statically through the Database class:
$query = "SELECT * FROM `cars` WHERE `color` = ?"; $stmt = Database::prepare($query); $stmt->execute(['red']); $row = $stmt->fetch();
Prepared statements
The Database class has a shortcut function for prepared statements called run():
| Parameters | Description | Required |
|---|---|---|
string $query |
SQL query to execute | YES |
array $params |
parameters to pass to query |
The function returns a PDOStatement object if preperation and execution of query was successfull.
If preperation or execution of query failed the function will throw a PDOException or return false depending on the currently set PDO error mode.
(see: Error handling for more info)
Example
$query = "SELECT * FROM `cars` WHERE `color` = ?"; $stmt = Database::run($query, ['red']); $row = $stmt->fetch();
Example with named parameters
$query = "SELECT * FROM `cars` WHERE `color` = :color"; $stmt = Database::run($query, [':color' => 'red']); $row = $stmt->fetch();
Error handling
PDO's error mode is set to ERRMODE_EXCEPTION by default.
Error handling can therefore be done through try and catch blocks.
try { $query = "SELECT * FROM `cars` WHERE `color` = ?"; $stmt = Database::run($query, ['red']); $row = $stmt->fetch(); } catch (PDOException $e) { // Handle exception }
When switching to a different error mode you will need to handle errors through booleans.
NOTE: Error handling using booleans is only supported if you change PDO's error mode.
$query = "SELECT * FROM `cars` WHERE `color` = :color"; if($stmt = Database::run($query, [':color' => 'red'])) { // Preparing and executing statement was successfull so fetch the result $row = $stmt->fetch(); }
ezrarieben/pdo-wrapper-singleton 适用场景与选型建议
ezrarieben/pdo-wrapper-singleton 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 02 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「database」 「php」 「mysql」 「pdo」 「wrapper」 「pdo-mysql」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ezrarieben/pdo-wrapper-singleton 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ezrarieben/pdo-wrapper-singleton 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ezrarieben/pdo-wrapper-singleton 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dibi is Database Abstraction Library for PHP
Store your language lines in the database, yaml or other sources
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
A PSR-7 compatible library for making CRUD API endpoints
PHP module for MySql database
VV database abstraction layer with query builder and DB structure models
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 19
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-02-11