0

i have big problem with GUID type in my sqlite database when i want to migrate it to mysql.

I have database sqlite, with tables contains GUID types in sqlite professional expert it displays as hexadecimal

but in Navicat premium it display as caracters

In my mysql table i have this structure : enter image description here

When i migrate my data from SQLITE to MYSQL, it displays as caracters not hexadecimal. When i export from sqlite to csv it is same issue it is not displayed as Hexadecimal format.

MY QUESTION: How to do for exporting from Sqlite To Mysql and having in mysql Hexadecimal format as this picture Correct format

Thank you for your help and excuse me for my bad english

1 Answers1

0

Use one encode in sqlite and mysql, for example utf8. Now you use in MySQL latin1_swedish_ci encode, convert it to utf8_general_ci for example.

Anton Ohorodnyk
  • 891
  • 5
  • 20