تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
9447 أدوات العرض

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

الصورة الرمزية
إهمال
أفضل إجابة

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].

الصورة الرمزية
إهمال
الكاتب

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

المنشورات ذات الصلة الردود أدوات العرض النشاط
3
مارس 15
21474
0
سبتمبر 18
2762
1
نوفمبر 24
1110
2
أبريل 23
2992
1
ديسمبر 22
5426