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
返信
5002
ビュー
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
|
9814 | ||
|
2
7月 17
|
3947 | ||
|
0
8月 16
|
3097 | ||
|
0
6月 16
|
3063 | ||
|
0
8月 17
|
3157 |
@Axel Mendoza can you help me with the procedure?