Which datatype shall i use to store image in database(PostgreSQL)? -
I am using the PostgreSQL database. Here I need to store the image in the database, in which there are many thousands in number for example. So I need to know what dataset is the use of "Bitia" or "Big Binary Object"?
Normal bytea
is a better option (I think).
The only advantage is that in "Big Objects", it is that you can access parts of binary data through a streaming interface. Rarely you will need images
Comments
Post a Comment