mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-11-24 08:46:41 +08:00
This commit adds another binary output conversion option to convert binary blobs into hexadecimal notation, similar to the output of the following command: xxd -p binaryfile.bin | tr -d '\n' (In other words, a single line string of hexadecimal characters representing a binary blob) When exporting SQL INSERT statements for SQLite and PostgreSQL and when the hexadecimal notation is specified with 'mdb-export -b hex ...', special consideration is given to ensure that binary blobs are safely written to the SQLite or PostgreSQL database. Signed-off-by: David Hicks <david@hicks.id.au>