What DB are you using? If it is MySQL then type the following
Code:
mysqldump -u USER -p DBName > /path/to/where/file/to/be/stored/DBName.sql
then enter your password. If successful go to the directory you placed the file and look at it. It will be a series of SQL statements, that will restored all the data to your DB.
Burn that onto CD with a readme that says to install this DB, create a DB with the same name in MySQL, and then launch mysql with following
Code:
mysql -u USER -p DBName < /path/to/where/file/to/be/stored/DBName.sql
I believe there is a similar method for Oracle and SQL Server, but I am not sure about how these work or if they even exist!
HTH
---
David Thorne, Student
UK