davidfricker/dataabstracter
Composer 安装命令:
composer require davidfricker/dataabstracter
包简介
Minimalist data abstraction and pseudo content provider framework
README 文档
README
This package is a wrapper around the PDO DBMS driver. It enables easy paramterisation of queries with one function call, aditionally it expoess CRUD operations.
Install
Using composer
composer require DavidFricker/DataAbstracter
Usage
use DavidFricker\DataAbstracter\Adapter\MySQLDatabaseWrapper ; $MySQLDatabaseWrapper = new MySQLDatabaseWrapper($dsn, $username, $password);
API
delete()
Remove one or more rows. As this is intended to be a simple helper function the only 'glue' to hold together the where clauses is 'AND' more complex delete statements should be performed using run().
Example
$where = ['col_name' => 'expected_value']; $limit = 10; $MySQLDatabaseWrapper->delete('table_name', $where, $limit);
update()
Update one or more rows. This is intended to be a simple helper function the only 'glue' to hold together the where clauses is 'AND' more complex update statements should be performed using run().
Example
$data = ['col_name' => 'new_value']; $where = ['col_name' => 'expected_value']; $limit = 10; $MySQLDatabaseWrapper->update('table_name', $data, $where, $limit);
fetch()
Pull one or more rows. As this is intended to be a simple helper function the only 'glue' to hold together the where clauses is 'AND' more complex update statements should be performed using run(). IMPORTANT: Ensure the $columns variable does not contain user input as it is inserted as-is into the statement and as so creates an SQL injection vulnerable.
Example
$columns = ['col_name_1', 'col_name_2']; $where = ['col_name' => 'expected_value']; $limit = 10; $MySQLDatabaseWrapper->fetch('table_name', $columns, $where, $limit);
insert()
Create a new row.
Example
$data = ['col_name_1' => 'new_value', 'col_name_2' => 'new_value']; $MySQLDatabaseWrapper->insert('table_name', $data);
run()
Execute any SQL query. To ensure your query is safe from SQL injection attacks pass all values via the $bind array.
Example
$new_record = ['col_name_1' => 'new_value', 'col_name_2' => 'new_value']; $MySQLDatabaseWrapper->insert('table_name', $new_record);
rowCount()
Fetch the number of rows returned from the last query performed.
Example
$new_record = ['col_name_1' => 'new_value', 'col_name_2' => 'new_value']; $MySQLDatabaseWrapper->insert('table_name', $new_record);
Bugs
Please report bugs by creating an issue and supply code to replicate the issue. Code contributions are always welcome.
Licence
Released under the MIT licenses.
davidfricker/dataabstracter 适用场景与选型建议
davidfricker/dataabstracter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 62 次下载、GitHub Stars 达 1, 最近一次更新时间为 2017 年 02 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 davidfricker/dataabstracter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 davidfricker/dataabstracter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 62
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 6
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-02-05