I managed to save the image into SQL using this code. set pbImage::Image to type System.Windows.Forms.Clipboard::GetImage() set pbImage::SizeMode to type System.Windows.Forms.PictureBoxSizeMode::Zoom invoke pbImage::Image::Save("temp-img", type System.Drawing.Imaging.ImageFormat::Jpeg) set fil to type System.IO.FileStream::New("temp-img", type System.IO.FileMode::Open) set size of aBytes to fil::Length invoke fil::Read(aBytes, 0, aBytes::Count()) invoke sql-db::itm-img-to-sql(txtTest::Text, aBytes) The image i want to upload doesnt come from a file but from a picturebox. Since the sample only shows how to upload from image I save the image to a temporary file then upload from file.
↧