Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends,


As i am new to vb.net.Can you give me a suggestion for how to insert image into
sql database
Posted

1 solution

1) Bring up SQL Server Management Studio.
2) Connect, and open the database you want to add the image to.
3) Expand the tables, and either add a new table with an appropriate index field, or right click teh table and select design.
4) Add a field called "myImage", and make its datatype "image". Allow nulls.
5) Close SQL Server Management studio.

To add images to the table (I will assume a new record, the table has an Identity field, and just the myImage column):
VB
Using con As New SqlConnection(connectionString)
	Using com As New SqlCommand("INSERT INTO myTable (myImage) VALUES (@IM)", con)
		Dim imageData As Byte() = File.ReadAllBytes("D:\Temp\Picture.jpg")
		com.Parameters.AddWithValue("@IM", imageData)
		com.ExecuteNonQuery()
	End Using
End Using
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900