Forums Register Login

how can we store image and get it back from SQL Server

+Pie Number of slices to send: Send
i am facing problem in storing and retrieve image to and from sql server so if you know the code than please paste it
thanx for taking time for reading this question
+Pie Number of slices to send: Send
I do not have code available but I can walk you through to process.
To Insert an image into the db, read the file into a byte[].
Create a PreparedStatement with the appropriate SQL.
Call the preparedstatement setBinaryStream(int pos, InputStream is, int length)
Use the ByteArrayInputStream in place of the InputStream as this will take the byte[] in the constructor.
Execute the prepared statement.
To read the image back from the db, run an SQL query and obtain a resultset.
Call the resultset getBinaryStream(int pos) method to get an InputStream.
Use this stream to read the bytes back from the db and re assemble them in an image file.
This method expects to read to and from a file. The ByteArrayInputStream is trick to make the db think it came from a file.
David
Sun Certified Programmer for the Java2 Platform
Joel Salatin has signs on his property that say "Trespassers will be Impressed!" Impressive tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 811 times.
Similar Threads
How to display image in JTable which is stored in database.
Displaying an image from byte[] into JSP
Retrieving an image from SQL Server database
this is my first question,how to display the image from SQL-SERVER with JSP?
store image using sql server
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 17:28:23.