I am receiving a blob datatype from sqlite db via web service. How can I use it in odoo to store it in the postgresql table. What kind of field should I use to achieve this scenario?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
1
회신
5011
화면
Hi #Anand Prasanth
You need to use an Odoo binary field that will create in PostgreSQL a field of type bytea. Make sure that you are serializing the content as base64 before save it in the webservice.
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
1
7월 17
|
9831 | ||
|
2
7월 17
|
3959 | ||
|
0
8월 16
|
3102 | ||
|
0
6월 16
|
3068 | ||
|
0
8월 17
|
3158 |
@Axel Mendoza can you help me with the procedure?