devxlogo

BlobToFile – Saving a BLOB field to a file

' Reusable routine that save a BLOB field to a file' Requires Imports for System.Data and System.Data.Common' Example: BlobToFile(dr, 2, "c:xxxx.bmp")Sub BlobToFile(ByVal dr As IDataReader, ByVal fieldIndex As Integer, _    ByVal filename As String)    Const CHUNK_SIZE As Integer = 200    Dim buffer(CHUNK_SIZE - 1) As Byte    Dim stream As New System.IO.FileStream(filename, IO.FileMode.Create)    Dim index As Long = 0    Try        Do            ' Get the next chunk, exit if no more bytes.            Dim length As Integer = CInt(dr.GetBytes(fieldIndex, index, buffer, _                0, CHUNK_SIZE))            If length = 0 Then Exit Do            ' Write to file and increment index in field data.            stream.Write(buffer, 0, length)            index += length        Loop    Finally        stream.Close()    End TryEnd Sub

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.