对不起我的英语不好
我想问如何检查行中是否有值?
提前致谢 :)
Private Sub uploadpic()
Dim SQLCmd As New MySqlCommand("SELECT Picture FROM Student_information WHERE S_I_D = ('" & ListView1.Items(ListView1.FocusedItem.Index).SubItems(0).Text & "') ", dbcon)
dbcon.Open()
*Dim pictureData As Byte() = DirectCast(SQLCmd.ExecuteScalar(), Byte())*
dbcon.Close()
Dim picture As Image = Nothing
'Create a stream in memory containing the bytes that comprise the image.
Using stream As New IO.MemoryStream(pictureData)
'Read the stream and create an Image object from the data.
PictureBox4.Image = Image.FromStream(stream)
End Using
End Sub