選択した画像をアップロードしてmysqlデータベースに配置することになっているWebサイトに小さなファイルをアップロードしています。イメージは varbinary 型 (長さ 8000) として保存されます。私のコードは次のとおりです。
Public Sub btnSave_Click(ByVal sender As Object, ByVal e As System.EventArgs)
If fileupload1.HasFile Then
Dim pimage As Byte() = fileupload1.FileBytes
Dim pid As String = partnum.Text.ToString
Dim sConnection As String = "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=localhost; DATABASE=inteva; UID=root; PASSWORD=root; OPTION=3"
Dim connectme As New OdbcConnection(sConnection)
Dim sInsertInto As String = "INSERT INTO images(serial, image1) VALUES(?pserial, ?ppimage)"
Dim com As New OdbcCommand(sInsertInto, connectme)
com.Parameters.Add("pserial", OdbcType.VarChar).Value = pid
com.Parameters.Add("?ppimage", OdbcType.VarBinary).Value = pimage
connectme.Open()
Dim result As Integer = com.ExecuteNonQuery()
connectme.Close()
If result > 0 Then
lblimageup.Text = "Image saved."
End If
Else
lblimageup.Text = "Please select an image file"
End If
End Sub
これを実行すると、次のような構文エラーが発生します。
ERROR [42000] [MySQL][ODBC 3.51 Driver][mysqld-5.6.11]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'pserial, 'ÿØÿá/þExif\0\0MM\0*\0\0\0\0\0\0\0\0\0\0\0’\0\0\0\0 \0\' at line 1
構文エラーが見つからないようです。何か案は?画像ファイルに構文を壊すものが含まれている可能性がありますか?