Download .zip |
Info | View files (5) | Download .zip | Reputation | Support forum (1) | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2010-08-05 (9 years ago) | 68% | Total: 970 | All time: 3,690 This week: 314 |
Version | License | PHP version | Categories | |||
db-populator 1.0.0 | BSD License | 5.0 | PHP 5, Databases, Testing |
Description | Author | ||||||||||||||||
This class can be used to populate a MySQL database with random data. Innovation Award
|
|
DataBase Populator Class 1. What is it all about? When one finishes the database modeling and it's time to integrate with the application, many times the problem is the DATA! You don't have data on the database in order to make the tests. This class was developed to fill this gap, providing a simple way to populate your database with dummy data. 2. How to use it? Just include the class and create a new instance. require('dbpopulator.class.php'); $db = new DBPopulator(); After that, provite the database access information. $db->setDb('localhost', 'user', 'pass'); Use the method 'populate' with the following parameters: * tables [mandatory] Use string or array to define this value. Either way, the pattern to specify the table is 'database.table'. You can also use * to populate all tables within a database (database.*) * inserts Use this parameter to specify the number of rows to be inserted at each table. * asScript Define here a filename to create the SQL statements instead of running the code directly in the database. Example (generating a script to populate two tables with 20 records each): $db->populate(array('mydb.table1', 'mydb.table2'), 20, 'my_script.sql'); 3. Customisation At the very beggining of the class you'll find the variables that you can modify in order to suit your needs. Here they are: * Field name pattern ($dummyName, $dummyAge, $dummyLink, ...) You can use these variables to set the field names to generate more consistent data into your tables. The script will try to match these field names and do the association with related data. * Password encrypt ($dummyPasswordEncrypt) Change as you need if you want to encrypt your generated passwords. Values can be: md5, sha1, base64, false * Number range ($dummyIntRange, $dummyRealRange) Define the minimum and maximum values to generate numbers. * Dummy values catalog Use this variables to set the values for generation dummy data. |
Files |
File | Role | Description |
---|---|---|
dbpopulator.class.php | Class | A class to populate your MySQL |
example.php | Example | Example of usage |
LICENSE | Lic. | BSD License |
README | Doc. | Purpose, HowTo and Customising |
TODO | Data | TODO list |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
0% |
|
|
User Ratings | User Comments (1) | ||||||||||||||||||||||||||||||||||
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.