MySQL dumping tools

I wrote these when I had to figure out the schema for a database and dump and reload the tables and data to a new server. Normally I'd use mysqldump, but it was not available in this situation, so I wrote my own.

The data dumper should be reliable, but the table schema is less so. In particular, I ignored all indexing information except primary key and not null constraints.
Back to Code Page