robertasproniu/php-simple-db-orm
Composer 安装命令:
composer require robertasproniu/php-simple-db-orm
包简介
A PHP database manager with simple ORM attached
README 文档
README
Installation
Use Composer
"require" : { "robertasproniu/php-simple-db-orm": "~1.0" }
Initialize
require_once 'vendor/autoload.php'; use SimpleDataBaseOrm\Database; use SimpleDataBaseOrm\DatabaseConnection; use SimpleDataBaseOrm\DatabaseConfiguration; $configuration = [ 'default' => 'default', 'connections' => [ 'default' => [ 'driver' => 'mysql', 'hostname' => 'database_hostname', 'username' => 'database_username', 'password' => 'database_password', 'database' => 'database_name' ], // optional can have multiple databases 'remote' => [ 'driver' => 'mysql', 'hostname' => 'database_hostname', 'username' => 'database_username', 'password' => 'database_password', 'database' => 'database_name' ] ] ] $dbConfiguration = new DatabaseConfiguration($configuration); // OR $dbConfiguration = new DatabaseConfiguration("path/to/database_cfg.php"); "path/to/database_cfg.php" should return an array $database = new Database(new DatabaseConnection, $dbConfiguration);
Usage
Examples selecting, inserting, updating and deleting data from or into products table.
// SELECT * FROM `products` WHERE `price` = ? $results = $database->select() ->from('products') ->where('price', 99) ->execute(); print_r($results); // [] of results (associative arrays); // INSERT INTO `products` ( `name` , `price` ) VALUES ( ? , ? ) $results = $database->insert(['name', 'price']) ->into('products') ->values([ 'ProductName', 199 ]) ->execute(); print_r($results); // [ 'id' => {{ insertedId }} ] OR []; // UPDATE `products` SET `price` = ? WHERE `id` = ? $results = $database->update([ 'price' => 199)) ->table('products') ->where('id', 1) ->execute(); print_r($results); // [ 'rows' => {{ numberOfAffectedRows }} ] OR []; // DELETE FROM `products` WHERE `id` = ? $results = $database->delete() ->from('products') ->where('id', 1) ->execute(); print_r($results); // [ 'rows' => {{ numberOfAffectedRows }} ] OR [];
Using Transaction
$database->transaction(function() use ($database) { // multiple queries $database->insert(['name', 'price']) ->into('products') ->values([ 'ProductName', 199 ]) ->execute(); $database->update([ 'price' => 199)) ->table('products') ->where('id', 1) ->execute(); }); //OR $database->transaction(function($database){ $database->delete() ->from('products') ->where('id', 1) ->execute(); });
Switching between database connections
$database->connection('remote');
统计信息
- 总下载量: 35
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-07-15