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?
此問題已被標幟
1
回覆
6947
瀏覽次數
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
|
12344 | ||
|
|
2
7月 17
|
5531 | ||
|
|
0
8月 16
|
4767 | ||
|
|
0
6月 16
|
4753 | ||
|
|
0
8月 17
|
4580 |
@Axel Mendoza can you help me with the procedure?