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

Popular posts from this blog

python - Writing Greek in matplotlib labels, titles -

c# - LINQ to Entities does not recognize the method 'Int32 IndexOf(System.String, System.StringComparison)' method -

Pygame memory leak with transform.flip -