SQL Server
SQL Server
Add Base64-Encoded Data to a ZIP Using AddEncoded
See more Zip Examples
This example demonstrates how to use the AddEncoded method to add encoded binary data as a file entry within a ZIP archive.
The example adds Base64-encoded data as a file named hello.txt within the ZIP archive. The Base64 text is automatically decoded to its original binary bytes before being stored in the ZIP.
This method is useful when binary data already exists in encoded textual form, such as Base64 or hex.
Chilkat SQL Server Downloads
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
DECLARE @success int
SELECT @success = 0
DECLARE @zip int
EXEC @hr = sp_OACreate 'Chilkat.Zip', @zip OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
EXEC sp_OAMethod @zip, 'NewZip', @success OUT, 'encodedData.zip'
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @zip, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @zip
RETURN
END
-- Base64 for the text: "Hello World!"
DECLARE @base64Data nvarchar(4000)
SELECT @base64Data = 'SGVsbG8gV29ybGQh'
-- Add the decoded bytes as "hello.txt" within the ZIP archive.
EXEC sp_OAMethod @zip, 'AddEncoded', @success OUT, 'hello.txt', 'base64', @base64Data
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @zip, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @zip
RETURN
END
-- Write the ZIP archive to disk and close it.
EXEC sp_OAMethod @zip, 'WriteZipAndClose', @success OUT
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @zip, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @zip
RETURN
END
PRINT 'ZIP archive created successfully.'
EXEC @hr = sp_OADestroy @zip
END
GO