Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
3217 Zobrazení

how to encode and decode binary data in postgresql ?

Avatar
Zrušit
Nejlepší odpověď

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)
Avatar
Zrušit