问题:
在 postgreSQL 中,用 bytea 存放长度为 length 的二进制字节数组,读取出来的字节数组长度为 length * 2 + 1。
原因:
postgreSQL 输出 bytea 的默认方式为 hex,对数据进行了转换。
解决方法:
修改 postgresql.conf 中的 bytea_output 为 escape。
双击,修改值为 escape
保存配置
重新载入配置
问题:
在 postgreSQL 中,用 bytea 存放长度为 length 的二进制字节数组,读取出来的字节数组长度为 length * 2 + 1。
原因:
postgreSQL 输出 bytea 的默认方式为 hex,对数据进行了转换。
解决方法:
修改 postgresql.conf 中的 bytea_output 为 escape。
双击,修改值为 escape
保存配置
重新载入配置