In mysql MyISAM table have a column Image type mediumblob and storing captured image. but i got some interesting and problematic things. some of images are gradually losing data.
Field type
--------------------------
image mediumblob
my.ini max allowd packet size set max_allowed_packet = 8M

this is the problem
when my C# desktop application fetching the data from the server every time this kind of image losing data gradually and random size. i got 10-12 bad image like this in 100000+ image data.
can not figure it out the reason behind this. any one have any idea/solution how to fix/avoid this problem.
Update 1:
Reading bytes form PictureBox
MemoryStream ms = new MemoryStream();
byte[] ret = null;
try
{
picturebox.Image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
byte[] Data = new byte[ms.Length];
ms.Read(Data, 0, (int)ms.Length);
ret = byteData;
ms.Close();
}
saving the bytes array into database as a medium blob data. when retrieving the data from database i make recasting the reader data
byte[] Data = (byte[])reader["Image"];