czogori/rentgen
Composer 安装命令:
composer require czogori/rentgen
包简介
Database abstraction layer for information and manipulation schema
关键字:
README 文档
README
Database abstraction layer for both information and manipulation schema
Installation
Using composer:
{ "require": { "czogori/rentgen": "dev-master" } }
Basic usage
Create sample table
$rentgen = new Rentgen(); $manipulation = $rentgen->createManipulationInstance(); $table = new Table('foo'); $table->addColumn(new StringColumn('bar')); $table->addColumn(new IntegerColumn('baz', array('not_null' => true))); $manipulation->create($table);
Get information about foo table
$info = $rentgen->createInfoInstance(); $fooTable = $info->getTable(new Table('foo'));
统计信息
- 总下载量: 2.93k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-09-10