I want to store an image in a MySQL database. I have created a table with a BLOB datatype, but now how do I store the image in this table?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You may want to check out the following example:
From java2s.com: Insert picture to MySQL:
MySQL Table:
If the image is located on your MySQL server host, you could use the
LOAD_FILE()command from a MySQL client: