PostgreSQL: How can I store images in a database? What existing products makes it easy for a user to upload photos into a general database?
-
-
Answer:
if you have to, read the file as normal (fread() etc) and then inse... You must be signed in to read this answer.Connected to GoogleConnected to FacebookBy continuing you indicate that you have read and agree to the . Loading account...Complete Your ProfileFull NameChecking...EmailChecking...PasswordChecking...By creating an account you indicate that you have read and agree to the .
Alex Coppen at Quora Visit the source
Other answers
As a general rule, it's a bad idea to store images in a database. This is due to the large amount of space they take up, which can affect database read performance and will greatly increases the size of your backups, making them both take longer and cost more to store. Instead, it's best to store the images elsewhere and then store a reference to them in your database. These days the easiest way of doing this is generally to use Amazon S3, which can cheaply and reliably store an unlimited number of images. Save them to S3, then store the S3 URL (or the bucket + key combination) in a string in your database row. If you're determined to store them in a database you can do so using a BLOB field, or by base64 encoding them and storing them in a large text field (which will even further inflate the size of your tables).
Simon Willison
What . There isn't a great value in storing large binary objects in a relational database because most DBMS don't have any support for indexing or searching or joining to these objects. If you need the locking or access semantics of your DB to be shared by your binary objects, this might be a good reason to keep them in the database. (PostgreSQL has some support for storing Large Binary Objects externally from the main DB storage, for cases like this, but haven't used it myself. See https://wiki.postgresql.org/wiki/BinaryFilesInDB#Storing_the_large_binary.2A_file_aka_unstructured_data_streams_in_a_database.)
Dan Lenski
Related Q & A:
- How Can I Get Started As A Freelance Web Developer?Best solution by code.tutsplus.com
- How can I transfer video from a dvr box to a computer?Best solution by Yahoo! Answers
- How can I print wirelessly from a laptop to a printer without a router?Best solution by answers.yahoo.com
- How can I upload images to Wikipedia?Best solution by Yahoo! Answers
- How can I record directly from a keyboard onto a computer?Best solution by eHow old
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.