Display format for MySql VARBLOB

Is it posible to display mysql varblob column as hex string ? Like it display varbinary on sql server.

0

Hi,

Currently, we do not have an extension you ask. As a workaround, you can use the following query:

SELECT HEX(<your_column>) FROM <your_table>;

You can track this issue https://youtrack.jetbrains.com/issue/DBE-2877 to be notified about progress.

Thank you.

 

0

请先登录再写评论。