Git Product home page Git Product logo

db-fixtures's Introduction

DB Fixtures Build Status Coverage Status

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.

db-fixtures's People

Contributors

hkdobrev avatar tumbalev avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.