Anybody have a solution
Is there a better practice to save and update an Adobe form to a blob
column in SQL
PB8 Window XP
Here is the method I use
blob ole_blob
//this actually loads the ole control from the database into
a
blob variable
selectblob pdffile into :ole_blob
from v_wsg_fileblob
where img_key = :ln_imgid using sqlca;
//assigning the blob data to the actual data control
ole_1.objectdata = ole_blob
If ole_1.activate(OffSite! ) <> 0 Then
Messagebox("OLE Activate","Unable to Activate")
//Return -1
End If