Export yields:
/*
SQLyog Enterprise v4.07 RC1
Host - 5.0.7-beta-nt-max : Database - test
*********************************************************************
Server version : 5.0.7-beta-nt-max
*/
create database if not exists `test`;
USE `test`;
/*Table structure for table `tablename1` */
drop table if exists `tablename1`;
CREATE TABLE `tablename1` (
`id` bigint(20) default NULL,
`mytext` varchar(255) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*Data for the table `tablename1` */
insert into `tablename1` values (NULL,a\b\c\d);
insert into `tablename1` values (NULL,e\f\g\h);
error msg with import goes
QUOTE
insert into `tablename1` values (NULL,a)
Line no.:24
Error Code: 1054 - Unknown column 'a' in 'field list'
Line no.:24
Error Code: 1054 - Unknown column 'a' in 'field list'
correct insert stmts would be:
insert into `tablename1` values (NULL,'a\\b\\c\\d');
insert into `tablename1` values (NULL,'e\\f\\g\\h');
Select * returns correct result so data are OK, as also pic shows
BTW: This issue gets me stuck with testing other features ....