I am able to save an image from a picture box into the database of SQL. I used a byte array and filestream to read the image.
FileStream fs = new FileStream(imagename, FileMode.Open, FileAccess.Read)
byte[] picbyte = new byte[fs.Length]
fs.Read(picbyte, 0, System.Convert.ToInt32(fs.Length))
fs.Close()
For some reason, I can't retrieve the image into a dataset to datagridview. Also to a picturebox. Need help