Hi,
I just bought SQLyog and the first thing I try to do with it turns out to have a bug. I tried to sync the schema of a table between two servers, and the MySQL code it produced to do it is incorrectly formatted and causes MySQL to produce an error (I changed the column names):
ALTER TABLE `products`
CHANGE `PROD_Col3` `PROD_Col3` bit(1) NOT NULL DEFAULT 'b'0'' after `PROD_Col1`,
ADD COLUMN `PROD_Col4` bit(1) NOT NULL DEFAULT 'b'1'' after `PROD_Col2`;
Notice in the “DEFAULT” part of each line it uses 'b'0'' and 'b'1'' rather than just b'0' and b'1'.
Please fix this bug as soon as possible since I bought your product specifically for the schema and data synching ability.
Thanks,
Russ