duncan3dc/sql-class
Composer 安装命令:
composer require duncan3dc/sql-class
包简介
A simple database abstraction layer, with an on disk caching facility.
关键字:
README 文档
README
A simple database abstraction layer, with an on disk caching facility.
Full documentation is available at http://duncan3dc.github.io/sql-class/
PHPDoc API documentation is also available at http://duncan3dc.github.io/sql-class/api/
Examples
The classes use a namespace of duncan3dc\SqlClass
use duncan3dc\SqlClass\Sql;
$sql = new Sql([ "mode" => "mysql", "hostname" => "localhost", "username" => "root", "password" => "password", ]); $row = $sql->select("table_1",[ "field1" => "one", "field2" => "two", ]); $sql->update("table_1",[ "field3" => "three", ],[ "field1" => $row["field1"], "field2" => $row["field2"], ])
统计信息
- 总下载量: 77.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2014-05-09