Tim H - 2007-04-18

Logged In: YES
user_id=683532
Originator: NO

I'm getting the same kind of bug when exporting data.

* With a whole database selected on a remote MySQL database server I ran: File | Export | SQL File...
* left the default options selected: all tables, Add create table, add table contents.
* Saved to the desktop.

The resulting sql file all seemed fine except for the password fields. The data within these fields was wrong.

Here is the original definition for the field (which was correct in the exported sql file also:
CREATE TABLE `ExampleTable` (
...
`password` blob NOT NULL,
...
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

Here is an example of a password field from the exported sql file:
INSERT INTO `ExampleTable`
(...,'6331666537666535653932626130316163663963396463356666306332313734',...)

And here is the original data for that field:
c1fe7fe5e92ba01acf9c9dc5ff0c2174

Regards,
Tim