What is the best way to do testing database (MYSQL spesific)

Posted by justjoe on Stack Overflow See other posts from Stack Overflow or by justjoe
Published on 2010-04-20T15:43:57Z Indexed on 2010/04/20 17:43 UTC
Read the original article Hit count: 386

Right now i'm on testing something in a database. It's a wordpress database. i have to write and delete and do other operation on it. As you know it, it has indexing mechanism that will always make every new post inherit the next highest possible ID.

Please consider that this database is a copying of used database. it has been written before. So, i will need to make sure when i finish my testing, it will be the same

Right now, my only solution is making backup. So if i have end in some section of planned testing, i will backup it and start next testing on another copy of it.

Fortunately, the size of database is only a small one. so delete and copy and backup it will be easy. but i know this way of database testing is only partial solution.It force me to create too many backup copy. I don't know what i will do if the database has bigger size. it will be a very long of testing nightmare.

so i wonder is there any solution that work just like rollback. So it will just lock the database and just put new entry as some kind of cache. I can erase it or write it into the database.

i use mysql and phpmyadmin and use it to developed some custom solution.

EDIT ::: How to effectively doing testing on database when developing PHP solution ?

© Stack Overflow or respective owner

Related posts about database

Related posts about mysql