私の英語でごめんなさい
行に値があるかどうかを確認する方法を知りたいですか?
前もって感謝します :)
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