跳至内容
菜单
此问题已终结
1 回复
3214 查看

how to encode and decode binary data in postgresql ?

形象
丢弃
最佳答案

Odoo encode and decode binary data saved into the database like the content of binary field using base64 so you are free to play with:

import base64
base64.encode(data)
base64.decode(data)
形象
丢弃