aviat/query
Composer 安装命令:
composer require aviat/query
包简介
Database Query Builder and Abstraction layer
README 文档
README
A query builder/database abstraction layer, using prepared statements for security.
Requirements
- PDO extensions for the databases you wish to use
- PHP 8.4 or later
Databases Supported
- MySQL 5+ / MariaDB
- PostgreSQL 8.4+
- SQLite
Including Query in your application
- Install via composer and include
vendor/autoload.php
Connecting
Create a connection array or object similar to this:
<?php $params = array( 'type' => 'mysql', // mysql, pgsql, sqlite 'host' => 'localhost', // address or socket 'user' => 'root', 'pass' => '', 'port' => '3306', 'database' => 'test_db', // Only required for // SQLite 'file' => '/path/to/db/file', // Optional parameters 'prefix' => 'tbl_', // Database table prefix 'alias' => 'old' // Connection name for the Query function ); $db = Query($params);
The parameters required depend on the database.
Query function
You can use the Query() function as a reference to the last connected database. E.g.
<?php Query()->get('table_name'); // or $result = Query()->query($sql);
If the alias key is set in the parameters, you can refer to a specific database connection
<?php // Set the alias in the connection parameters $params['alias'] = 'old'; // Connect to the legacy database Query('old')->query($sql);
Running Queries
Query is based on CodeIgniter's Query Builder class. However, it has camelCased method names, and does not implement the caching methods. For specific query builder methods, see the class documentation.
Other database methods not directly involved in building queries, are also available from the query builder object. The methods available depend on the database, but common methods are documented here.
You can also run queries manually.
To run a prepared statement, call
$db->prepareExecute($sql, $params).
To run a plain query, $db->query($sql)
Retrieving Results:
An example of a moderately complex query:
<?php $query = $db->select('id, key as k, val') ->from('table t') ->where('k >', 3) ->orWhere('id !=', 5) ->orderBy('val', 'DESC') ->limit(3, 1) ->get();
This will generate a query similar to (with this being the output for a PostgreSQL database):
SELECT "id", "key" AS "k", "val" FROM "table" "t" WHERE "k" > ? OR "id" != ? ORDER BY "val" DESC LIMIT 3 OFFSET 1
The query execution methods get, getWhere, insert,
insertBatch,update, and delete return a native PDOStatement object.
To retrieve the results of a query, use the PDOStatement method fetch and/or
fetchAll.
<?php $query = $db->get('table_name'); $results = $query->fetchAll(PDO::FETCH_ASSOC);
Inserting / Updating
An example of an insert query:
<?php $query = $db->set('foo', 'bar') ->set('foobar', 'baz') ->where('foo !=', 'bar') ->insert('table');
An example of an update query:
<?php $query = $db->set('foo', 'bar') ->set('foobar', 'baz') ->where('foo !=', 'bar') ->update('table');
The set method can also take an array as a parameter, instead of setting individual values.
aviat/query 适用场景与选型建议
aviat/query 是一款 基于 HTML 开发的 Composer 扩展包,目前已累计 3.4k 次下载、GitHub Stars 达 8, 最近一次更新时间为 2016 年 08 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「database」 「mysql」 「sqlite」 「codeigniter」 「pdo」 「postgres」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 aviat/query 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 aviat/query 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 aviat/query 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dibi is Database Abstraction Library for PHP
Store your language lines in the database, yaml or other sources
The tenancy/tenancy database driver for sqlite
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Slimmed down concise interfaces and query builder for database queries and transactions which can be layered / decorated.
A PSR-7 compatible library for making CRUD API endpoints
统计信息
- 总下载量: 3.4k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 4
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-04