Archery
Archery copied to clipboard
[ 功能建议 ] Binary 数据类型支持显示为原本的HEX字符串
Discussed in https://github.com/hhyo/Archery/discussions/1766
Originally posted by beebird August 12, 2022
- Binary data 显示的不具有可读性:
select id, uid, account from `table1` order by id limit 1;
2 | 000001 | yû÷¼þ.F§ ¼§Ýæ
- 目前只能通过
HEX函数:
select id, uid, HEX(account) from `table1` order by id limit 1;
2 | 000001 | 9D79FAF7BCFE122E46A81809C2BCA7A3FD8BE681
如果可以默认将 Binary 格式的HEX 数据,以可读的形式显示出来,就是一个很受欢迎的feature了。哪怕只支持少数数据库。
参考:
-
[MySQL] Improved Binary data type support that shows the actual HEX value and you can edit directly.
-
https://github.com/TablePlus/TablePlus/issues/1439