duncan3dc/sql-class

一个简单的数据库抽象层,具有磁盘缓存功能。

1.9.1 2023-04-11 15:42 UTC

README

一个简单的数据库抽象层,具有磁盘缓存功能。

完整文档可在以下网址获取:http://duncan3dc.github.io/sql-class/
PHPDoc API 文档也在此网址提供:http://duncan3dc.github.io/sql-class/api/

Build Status Latest Version

示例

这些类使用命名空间 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"],
])