mysql2sqlite icon indicating copy to clipboard operation
mysql2sqlite copied to clipboard

\\\' is turned into \'

Open danez opened this issue 9 years ago • 0 comments

For example if i have an INSERT statement in the mysql dump where one of the string values is

'class=\"${props.class.concat(\\\'btn\\\', smth)'

It will be transformed into

'class="${props.class.concat(\''btn\', smth)'

Which misses one ' at the last quote in the string.

danez avatar Jul 23 '16 22:07 danez