Insert photo in detail ADO
Hello,
I have a database with two tables master and detail, what I want is how to insert in the detail a blob file.
Code:
Try
Me.BindingContext(DataSet71, "Scan").EndCurrentEdit()
Me.BindingContext(DataSet71, "Scan").AddNew()
Catch eEndEdit As System.Exception
System.Windows.Forms.MessageBox.Show(eEndEdit.Message)
End Try
Re: Insert photo in detail ADO
Quote:
Originally Posted by
kyriakos70
Hello,
I have a database with two tables master and detail, what I want is how to insert in the detail a blob file.
Code:
Try
Me.BindingContext(DataSet71, "Scan").EndCurrentEdit()
Me.BindingContext(DataSet71, "Scan").AddNew()
Catch eEndEdit As System.Exception
System.Windows.Forms.MessageBox.Show(eEndEdit.Message)
End Try
Hello,
Which database are you using? There's a saveBlob link in my signature that shows you how to save a blob.
I am not entirely sure if this binding approach will work.