openbuildings/db-fixtures
Composer 安装命令:
composer require openbuildings/db-fixtures
包简介
Load data into the database and cache with raw sql inserts
README 文档
README
This package gives you an abilitiy to keep database fixtures in plain php files and then store a snapshot of the database's content as raw sql queries. This allaws for readable fixture files (as opposed to xml or yml dumps) and you could use your ORM of choise and take advantage of all of your associations.
Here's an example usage:
use Openbuildings\DBFixtures\Fixture; $fixture = new Fixture; $fixture->connect('mysql:db_name=mydatabase', 'root'); if (file_exists('cache_file.sql')) { $fixture->load(file_get_contents('cache_file.sql')); } else { $fixture ->truncate_all() ->execute_import_files(array('file1.php', 'file2.php')); file_put_contents('cache_file.sql', $fixture->dump()); }
file1.php and file2.php are simple php scripts where you do whatever you want to put data inside your database, then dump() will return it as raw SQL inserts.
It does not use mysqldump so it is more portable.
If you want you could pass the actual Pdo connection object and reuse it from your own configuration like this:
use Openbuildings\DBFixtures\Fixture; $fixture = new Fixture; $fixture->pdo($pdo_object);
The actual file caching is not part of this package as most frameworks have their own cache functionality and it would be better to use that instead of rolling out our own.
License
Copyright (c) 2012-2013, OpenBuildings Ltd. Developed by Ivan Kerin as part of clippings.com
Under BSD-3-Clause license, read LICENSE file.
统计信息
- 总下载量: 125.79k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2013-07-26