• I do agree with DALEC on the storing images in Database, it can be slow. A few GB Data is not a problem.

    Step 1 : Create a table with Image Data Type

    Step 2 : Make an ADO Call to SQL DB.

    Set fldData = rsGetDocument.Fields("Data")

    lBytes = fldData.ActualSize

    aByteDocument = fldData.GetChunk(lBytes)

    Step 3 : Stream the Data to a File and do what you want.