'Parse database Multiple Images one Column
Is there a way to store multiple images in one column in Parse database? if so can you please give me a description of how and if not what would be a better way of going about storing multiple images that are related in Parse database.
Solution 1:[1]
It is not a good way to store images in blob. However you can use another table with same column id and store multiple images.
Table 1:
Table1_id, column1, column2
Table 2:
Table2_id, table1_id, blob
In this way you can have multiple images and refer the first table.
Solution 2:[2]
Currently there is no way to store multiple images in one column in Parse database.If you want to store multiple images in one column in that case you can use another table to store images after that save object id in a array type field of another table
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Aldin Philo |
| Solution 2 | Mohammad Ali |
