 |
|
Insert Picture in Blob Field พอดีติดปัญหาครับ ไม่สามารถอัพโหลดรูปได้ติด error |
|
 |
|
|
 |
 |
|
พอดีว่าผมต้องการจะทำฟอร์มสมัครสมาชิกโดยจะมีรูปภาพเข้ามาด้วยครับ เลยติดปัญหาตรงที่ว่าพอกดแล้วมันไม่ไป ติด error
ส่วนใหญ่โค้ดจะหาจาก google พวก Insert Image
ภาพจากโปรแกรมที่ติด error ครับ

ภาพจากฐานข้อมูลครับ

นี่คือโค้ดที่ใช้ครับ
Code (VB.NET)
Private Sub Browse1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Browse1.Click
Dim fileOpener As OpenFileDialog = New OpenFileDialog()
fileOpener.Filter = "Image files | *.jpg"
If fileOpener.ShowDialog() = Windows.Forms.DialogResult.OK Then
PictureBox1.Image = Image.FromFile(fileOpener.FileName)
TextBox1.Text = fileOpener.FileName
End If
End Sub
Private Sub btnAdd_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
Dim strConnString, strSQL As String
Dim FileName As String = TextBox1.Text
Dim Image() As Byte
Dim fs As FileStream
Dim sPath As String
Try
sPath = FileName
fs = New FileStream(sPath, FileMode.Open, FileAccess.Read)
Image = New Byte(fs.Length) {}
fs.Read(Image, 0, fs.Length)
fs.Close()
strConnString = "Server=localhost;User Id=root; Password=0000; Database=members; Pooling=false"
objConn.ConnectionString = strConnString
objConn.Open()
strSQL = "insert into members.member (CustomerID,Username,Password,Name,Email,Age,Gade,Wicha,Class,Idcard,Rg,Nick,Adress,Pic) values ('" & textbox_cid.Text & "','" & textbox_username.Text & "','" & textbox_password.Text & "','" & textbox_name.Text & "','" & textbox_email.Text & "','" & textbox_age.Text & "','" & textbox_gade.Text & "','" & textbox_wicha.Text & "','" & textbox_class.Text & "','" & textbox_idcard.Text & "','" & textbox_rg.Text & "','" & textbox_nick.Text & "','" & RichTextBox1.Text & "',@FileName)"
objCmd = New MySqlCommand(strSQL, objConn)
objCmd.Parameters.Add("@Pic", Image)
Reader = objCmd.ExecuteReader
MessageBox.Show("บันทึกข้อมูลเรียบร้อย!")
objConn.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
objConn.Dispose()
End Try
End Sub
ขออภัยนะครับ ถ้าตั้งกระทู้ผิดตรงไหน พอดีเพิ่งหัดตั้งเลยไม่ค่อยมั่นใจเท่าไร
Tag : .NET, VB.NET
|
|
 |
 |
 |
 |
Date :
2014-11-30 11:59:53 |
By :
shoshiz |
View :
1025 |
Reply :
18 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
type data มันผิดอ่าครับ
จะเอา string ไปใส่เลยไม่ได้ครับ ต้องแปลงเป็น type เดียวกับ data ก่อน
ถ้าเป็นพวกไฟล์ต่างๆ ผมชอบใช้เป็น text(ใน data) มันทำงานง่ายดีครับไม่ต้องแปลงกลับไปกลับมา
|
 |
 |
 |
 |
Date :
2014-11-30 12:50:02 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ตรงอนุญาติให้ null ครับ จะต้องว่างได้ 
|
 |
 |
 |
 |
Date :
2014-11-30 20:00:41 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
พอผมปรับเป็น Null แล้วกดบันทึกได้ปกติครับ ข้อมูลบันทึกแต่ว่ารูปภาพไม่ได้บันทึกอะครับ


Code (VB.NET)
Public Class frmAdd
Dim objConn As New MySqlConnection
Dim objCmd As New MySqlCommand
Dim Reader As MySqlDataReader
Private Function ImageToStream(ByVal fileName As String) As Byte()
Dim stream As New MemoryStream()
tryagain:
Try
Dim image As New Bitmap(fileName)
image.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg)
Catch ex As Exception
GoTo tryagain
End Try
Return Stream.ToArray()
End Function
Private Sub Browse1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Browse1.Click
Dim fileOpener As OpenFileDialog = New OpenFileDialog()
fileOpener.Filter = "Image files | *.jpg"
If fileOpener.ShowDialog() = Windows.Forms.DialogResult.OK Then
PictureBox1.Image = Image.FromFile(fileOpener.FileName)
TextBox1.Text = fileOpener.FileName
End If
End Sub
Private Sub btnAdd_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
Dim strConnString, strSQL As String
Dim FileName As String = TextBox1.Text
Dim content As Byte() = ImageToStream(FileName)
Try
strConnString = "Server=localhost;User Id=root; Password=0000; Database=members; Pooling=false"
objConn.ConnectionString = strConnString
objConn.Open()
strSQL = "insert into members.member (CustomerID,Username,Password,Name,Email,Age,Gade,Wicha,Class,Idcard,Rg,Nick,Adress,Pic) values ('" & textbox_cid.Text & "','" & textbox_username.Text & "','" & textbox_password.Text & "','" & textbox_name.Text & "','" & textbox_email.Text & "','" & textbox_age.Text & "','" & textbox_gade.Text & "','" & textbox_wicha.Text & "','" & textbox_class.Text & "','" & textbox_idcard.Text & "','" & textbox_rg.Text & "','" & textbox_nick.Text & "','" & RichTextBox1.Text & "',@FileName)"
objCmd = New MySqlCommand(strSQL, objConn)
objCmd.Parameters.Add("@Pic", content)
objCmd.ExecuteNonQuery()
MessageBox.Show("บันทึกข้อมูลเรียบร้อย!")
objConn.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
objConn.Dispose()
End Try
End Sub
|
 |
 |
 |
 |
Date :
2014-11-30 20:22:51 |
By :
shoshiz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ImageToStream ลองเปลี่ยนเป็นแบบนี้ได้ไม๊ครับ
อยากรู้ว่ามันส่ง array มาให้เราจิงป่าว
Code (C#)
Private Function ImageToStream(ByVal fileName As String) As Byte()
Dim stream As New MemoryStream()
Dim image As Image = Image.FromFile(fileName)
image.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg)
MessageBox.Show(Stream.ToArray().Length.ToString())
Return Stream.ToArray()
End Function
|
 |
 |
 |
 |
Date :
2014-11-30 22:34:32 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เหมือนเดิมเลยครับ ข้อมูลเข้าปกติ MessageBox.Show(stream.ToArray().Length.ToString()) ขึ้นปกติ
|
 |
 |
 |
 |
Date :
2014-11-30 22:50:14 |
By :
shoshiz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองเปลี่ยนจาก @pic เป็น @FileName ดูครับ
พอด๊ไปอ่านในเว็บเหมือนมันต้องสอดคล้องกัน
comm.CommandText = "INSERT INTO room(person,address) VALUES(@person, @address)";
comm.Parameters.Add("@person", "Myname");
comm.Parameters.Add("@address", "Myaddress");
Code (C#)
strSQL = "insert into members.member (CustomerID,Username,Password,Name,Email,Age,Gade,Wicha,Class,Idcard,Rg,Nick,Adress,Pic) values ('" & textbox_cid.Text & "','" & textbox_username.Text & "','" & textbox_password.Text & "','" & textbox_name.Text & "','" & textbox_email.Text & "','" & textbox_age.Text & "','" & textbox_gade.Text & "','" & textbox_wicha.Text & "','" & textbox_class.Text & "','" & textbox_idcard.Text & "','" & textbox_rg.Text & "','" & textbox_nick.Text & "','" & RichTextBox1.Text & "',@FileName)"
objCmd = New MySqlCommand(strSQL, objConn)
objCmd.Parameters.Add("@FileName", content)
แต่ก็ยังยืนยันว่าผมไม่ถนัด SQL ลองทำดูครับ(คงไม่เสียหายไร   )
|
 |
 |
 |
 |
Date :
2014-12-01 09:04:29 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
PHP ปกติ ผมจะแปลง imagestream เป็น hexa
$sql= "insert into table set blobfield = 0x" . bin2hex( $stream );
ที่นี้ VB ลองค้นดูเจอคำสั่งนี้ ลองดูนะครับ ยังไม่ได้ลอง
dim sql as String = "insert into table set blobfield = 0x" & binascii.hexlify('hello world')
|
 |
 |
 |
 |
Date :
2014-12-01 19:10:23 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ว้า ตลาดวายซะแระ
blob ต้องส่งไปด้วย byte array สำคัญแค่นี้แหละ
หรือจะส่งเป็น hex string แบบลุงเค้าก็ได้
แต่เราว่า .net ส่งแบบ paramater ง่ายกว่านะ
ของเค้าทำมาให้ใช้แล้ว
|
 |
 |
 |
 |
Date :
2014-12-02 16:34:06 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอดูโค๊ดล่าสุดหน่อยครับ
|
 |
 |
 |
 |
Date :
2014-12-02 16:38:50 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
นี่คือโค้ดล่าสุดครับ
Code (VB.NET)
Private Sub Browse1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Browse1.Click
Dim fileOpener As OpenFileDialog = New OpenFileDialog()
fileOpener.Filter = "Image files | *.jpg"
If fileOpener.ShowDialog() = Windows.Forms.DialogResult.OK Then
PictureBox1.Image = Image.FromFile(fileOpener.FileName)
TextBox1.Text = fileOpener.FileName
End If
End Sub
Private Sub btnAdd_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
Dim strConnString, strSQL As String
Dim FileName As String = TextBox1.Text
Dim content As Byte() = ImageToStream(FileName)
Try
strConnString = "Server=localhost;User Id=root; Password=0000; Database=members; Pooling=false"
objConn.ConnectionString = strConnString
objConn.Open()
strSQL = "insert into members.member (CustomerID,Username,Password,Name,Email,Age,Gade,Wicha,Class,Idcard,Rg,Nick,Adress,Pic) values ('" & textbox_cid.Text & "','" & textbox_username.Text & "','" & textbox_password.Text & "','" & textbox_name.Text & "','" & textbox_email.Text & "','" & textbox_age.Text & "','" & textbox_gade.Text & "','" & textbox_wicha.Text & "','" & textbox_class.Text & "','" & textbox_idcard.Text & "','" & textbox_rg.Text & "','" & textbox_nick.Text & "','" & RichTextBox1.Text & "',@FileName)"
objCmd = New MySqlCommand(strSQL, objConn)
objCmd.Parameters.Add("@FileName", content)
Reader = objCmd.ExecuteReader
MessageBox.Show("บันทึกข้อมูลเรียบร้อย!")
objConn.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
objConn.Dispose()
End Try
End Sub
|
 |
 |
 |
 |
Date :
2014-12-02 17:21:56 |
By :
shoshiz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เอ่อขอต่ออีกหน่อยนะครับ พอดีผมลองใช้เป็นโค้ดตัวนี้แล้วมันอัพขึ้นได้ แต่ดันมีปัญหากับหน้าโชว์รูปภาพ หรือผมโค้ดผิดหน้าโชว์
อันนี้โค้ดที่ผมใช้สำหรับแอดข้อมูล
Code (VB.NET)
Private Sub Browse1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Browse1.Click
Dim fileOpener As OpenFileDialog = New OpenFileDialog()
fileOpener.Filter = "Image files | *.jpg"
If fileOpener.ShowDialog() = Windows.Forms.DialogResult.OK Then
PictureBox1.Image = Image.FromFile(fileOpener.FileName)
TextBox1.Text = fileOpener.FileName
End If
End Sub
Private Sub btnAdd_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
Dim strConnString, strSQL As String
Dim FileName As String = TextBox1.Text
Dim Image As Byte() = ImageToStream(FileName)
Try
strConnString = "Server=localhost;User Id=root; Password=0000; Database=members; Pooling=false"
objConn.ConnectionString = strConnString
objConn.Open()
strSQL = "insert into members.member (CustomerID,Username,Password,Name,Email,Age,Gade,Wicha,Class,Idcard,Rg,Nick,Adress,Pic) values ('" & textbox_cid.Text & "','" & textbox_username.Text & "','" & textbox_password.Text & "','" & textbox_name.Text & "','" & textbox_email.Text & "','" & textbox_age.Text & "','" & textbox_gade.Text & "','" & textbox_wicha.Text & "','" & textbox_class.Text & "','" & textbox_idcard.Text & "','" & textbox_rg.Text & "','" & textbox_nick.Text & "','" & RichTextBox1.Text & "', ' Image ')"
objCmd = New MySqlCommand(strSQL, objConn)
objCmd.Parameters.Add("@Image", MySqlDbType.Blob)
Reader = objCmd.ExecuteReader
MessageBox.Show("บันทึกข้อมูลเรียบร้อย!")
objConn.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
objConn.Dispose()
End Try
End Sub
Code (VB.NET)
Public Shared Function ByteArrayToImage(ByVal byteArrayIn As Byte()) As Image
Dim ms = New System.IO.MemoryStream(byteArrayIn)
Dim returnImage As Image = Image.FromStream(ms)
Return returnImage
End Function
Public Sub LoadInfor()
Dim objConn As New MySqlConnection
Dim objCmd As New MySqlCommand
Dim dtAdapter As MySqlDataAdapter
Dim dt As New DataTable
Dim strConnString, strSQL As String
strConnString = "Server=localhost;User Id=root; Password=0000; Database=members; Pooling=false"
objConn.ConnectionString = strConnString
objConn.Open()
strSQL = "SELECT * FROM member WHERE Username = '" & strUser & "' "
dtAdapter = New MySqlDataAdapter(strSQL, objConn)
dtAdapter.Fill(dt)
If dt.Rows.Count > 0 Then
Me.lblUser.Text = strUser
Me.lblName.Text = dt.Rows(0)("Name")
Me.lblEmail.Text = dt.Rows(0)("Email")
Me.lblAge.Text = dt.Rows(0)("Age")
Me.lblID.Text = dt.Rows(0)("CustomerID")
Me.lblGade.Text = dt.Rows(0)("Gade")
Me.lblWicha.Text = dt.Rows(0)("Wicha")
Me.lblClass.Text = dt.Rows(0)("Class")
Me.lblIdcard.Text = dt.Rows(0)("Idcard")
Me.lblRg.Text = dt.Rows(0)("Rg")
Me.lblNick.Text = dt.Rows(0)("Nick")
PictureBox3.Image = ByteArrayToImage(dt.Rows(0)("Pic"))
Me.RichTextBox1.Text = dt.Rows(0)("Adress")
End If
objConn.Close()
objConn = Nothing
End Sub
|
 |
 |
 |
 |
Date :
2014-12-02 18:05:33 |
By :
shoshiz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|