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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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
|
|||||||||||||||||
|
|
read the content of the file (BINARY) and insert it in insert \ update MYSQL query a lot of example in google : http://www.java2s.com/Code/Java/Database-SQL-JDBC/InsertpicturetoMySQL.htm |
|||
|
|