solve/database
Composer 安装命令:
composer require solve/database
包简介
Database engine
关键字:
README 文档
README
Database component for Solve framework
Already done:
QC
MysqlDBAdaptor
DBOperator
ModelOperator
ModelStructure
Model
ModelCollection
ModelRelation
SlugAbility
TranslateAbility
FilesAbility (+thumbnails)
Validation
Need to be realized
SortAbility TimeTrackAbility TreeAbility HistoryAbility DynamicAbility
Paginator
Sample model structure
Brand:
table: brands columns: id: type: 'int(11) unsigned' auto_increment: true title: type: varchar(255) indexes: primary: columns: - id relations: products: { } # here we have autodetect for model, for relation type and related field names
Category:
table: categories columns: id: type: 'int(11) unsigned' auto_increment: true title: type: varchar(255) indexes: primary: columns: - id relations: products: { }
Product:
table: products columns: id: type: 'int(11) unsigned' auto_increment: true title: type: varchar(255) id_brand: type: 'int(11) unsigned' indexes: primary: columns: - id relations: brand: { } categories: { }
Simple Operations:
$product = Product::loadOne(1); $product->title = 'Macbook air'; $product->save(); $product = new Product(); $product->title = 'Macbook pro' $product->save(); $list = Product::loadList(QC::create()->where('id < :d', 3)); //$list->loadRelated('brand'); - optional echo $list->getFirst()->brand->id; $list->getFirst()->setRelatedBrand(1); // set related by id
统计信息
- 总下载量: 257
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-10-19