Re: Script to export MySQL tables to csv

2005-11-16 Thread Jandre
Thnaks to everybody for their input. I have found a quick fix for now. MySQL dump allows me to export the data to XML which can easily be compared. This will help me for now and the project will have to wait until I have some more time. Regards Jandre -- http://mail.python.org/mailman/listinfo/

Re: Script to export MySQL tables to csv

2005-11-10 Thread Gerhard Häring
Jandre wrote: > To anyone that can help > > I have 2 MySQL databases that contain large amounts of tables. I need > to be able to compare the data in the tables with older/newer versions > of the tables. I figured the easiest way would be to get the info in > csv format and then run a comparison.

Re: Script to export MySQL tables to csv

2005-11-10 Thread Larry Bates
Jandre wrote: > To anyone that can help > > I have 2 MySQL databases that contain large amounts of tables. I need > to be able to compare the data in the tables with older/newer versions > of the tables. I figured the easiest way would be to get the info in > csv format and then run a comparison.

Re: Script to export MySQL tables to csv

2005-11-10 Thread Steve Holden
Jandre wrote: > To anyone that can help > > I have 2 MySQL databases that contain large amounts of tables. I need > to be able to compare the data in the tables with older/newer versions > of the tables. I figured the easiest way would be to get the info in > csv format and then run a comparison.

Script to export MySQL tables to csv

2005-11-10 Thread Jandre
To anyone that can help I have 2 MySQL databases that contain large amounts of tables. I need to be able to compare the data in the tables with older/newer versions of the tables. I figured the easiest way would be to get the info in csv format and then run a comparison. I can get all the data usi