How should I parse mysqldump binary output

INSERT INTO `mytable` VALUES ('\0\0^\ft^^f~hr°Ù3^Y','column2',1);
      

is part of the mysqldump table. I know there is a parameter --hex-blob

, but how can I parse the first column as00001C66741E667E6872B0D933199292

This is essentially language agnostic, but if a python based solution exists, it would be great.

+3


source to share





All Articles