İçereği Atla
Menü
This question has been flagged
1 Cevapla
9321 Görünümler

Hi everybody,

I would like to know if it possible to concert bytea picture into binary. I take the bytea into a field of the database and i want to "put" it into a binary field like this:

cr.execute('SELECT res_company.logo_web FROM res_company') res = cr.fetchall() v['logo_Print'] =base64.decodestring(str(res[0]))

But doesn't work.

Someone have some idea, please? How is possible to concert my "tuple" into a string and after binary?

Thanks a lot!

Selverine

Avatar
Vazgeç
Best Answer

cr.fetchall() returns an array of arrays. If you cant to access the first column (logo_web) of the first row (I assume that there is only one row/company), then you have to use res[0][0].

Avatar
Vazgeç
Üretici

Hi Andreas, Thank you for your help. It works!

Related Posts Cevaplar Görünümler Aktivite
3
Mar 15
21321
0
Eyl 18
2705
1
Kas 24
979
2
Nis 23
2893
1
Ara 22
5253