MySqlDump null not working

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for MySQL
Post Reply
haudirac

MySqlDump null not working

Post by haudirac » Wed 08 Dec 2004 22:10

MySqlDump is apparently not dumping null values correctly.
This is my dump of a single row. Notice the lonely , , ,

INSERT INTO log VALUES (841, 'AppS', , , '', '2004-12-08 15:50:32');

When I try to restore, it gives an sql syntax error
If I manually change it to
INSERT INTO log VALUES (841, 'AppS', null, null, '', '2004-12-08 15:50:32');
it works fine.

Am I doing something wrong or is this a bug?

Oleg
Devart Team
Posts: 264
Joined: Thu 28 Oct 2004 13:56

Re: MySqlDump null not working

Post by Oleg » Thu 09 Dec 2004 10:05

It is a bug, you use the old version of MySQLDirect .NET.
Please download the last version of MySQLDirect .NET 2.70.

Post Reply