我想从pictureBox1中保存图片,并将其保存到SQLyog中的数据库中。我使用了很多代码,但似乎没有一个对我有用。我在数据库中使用的数据类型是LONGBLOB。
示例是:
MemoryStream ms = new MemoryStream();
pictureBox1.Image.Save(ms, ImageFormat.Jpeg);
byte[] PhotoByte = ms.ToArray();
//sql string
_sSQL = "INSERT INTO student_pictures (Picture)" +
" VALUES (" + Photobyte + ")";
DBConnection sSQL = _sSQL;