Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) Compress String Feed to Base64This example receives incoming text data in chunks, compresses as a stream, and accumulates the compressed data in base64. The purpose is to demonstrate the BeginCompressStringENC, MoreCompressStringENC, and EndCompressStringENC methods.
-- 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 @sTmp1 nvarchar(4000) -- This example assumes the Chilkat API to have been previously unlocked. -- See Global Unlock Sample for sample code. DECLARE @success int DECLARE @sbCompressedBase64 int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbCompressedBase64 OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END DECLARE @compress int -- Use "Chilkat_9_5_0.Compression" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Compression', @compress OUT EXEC sp_OASetProperty @compress, 'Algorithm', 'deflate' EXEC sp_OASetProperty @compress, 'Charset', 'utf-8' EXEC sp_OASetProperty @compress, 'EncodingMode', 'base64' DECLARE @sbIndex int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbIndex OUT DECLARE @i int SELECT @i = 0 WHILE @i <= 24 BEGIN -- Note: It is possible (and normal) for a BeginCompress* or MoreCompress* method to return -- an empty string (or 0 bytes). When this happens, the input data is not lost. It will be flushed -- in a subsequent call. EXEC sp_OAMethod @sbIndex, 'Clear', NULL EXEC sp_OAMethod @sbIndex, 'AppendInt', @success OUT, @i IF @i = 0 BEGIN EXEC sp_OAMethod @sbIndex, 'GetAsString', @sTmp1 OUT EXEC sp_OAMethod @compress, 'BeginCompressStringENC', @sTmp0 OUT, @sTmp1 EXEC sp_OAMethod @sbCompressedBase64, 'Append', @success OUT, @sTmp0 END ELSE BEGIN EXEC sp_OAMethod @sbIndex, 'GetAsString', @sTmp1 OUT EXEC sp_OAMethod @compress, 'MoreCompressStringENC', @sTmp0 OUT, @sTmp1 EXEC sp_OAMethod @sbCompressedBase64, 'Append', @success OUT, @sTmp0 END EXEC sp_OAMethod @compress, 'MoreCompressStringENC', @sTmp0 OUT, ': This is a line of data to be compressed...' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbCompressedBase64, 'Append', @success OUT, @sTmp0 SELECT @i = @i + 1 END -- Flush any remaining output. EXEC sp_OAMethod @compress, 'EndCompressStringENC', @sTmp0 OUT EXEC sp_OAMethod @sbCompressedBase64, 'Append', @success OUT, @sTmp0 PRINT 'The base64 encoded compressed text:' EXEC sp_OAMethod @sbCompressedBase64, 'GetAsString', @sTmp0 OUT PRINT @sTmp0 -- Now decompress in one call: DECLARE @originalText nvarchar(4000) EXEC sp_OAMethod @sbCompressedBase64, 'GetAsString', @sTmp0 OUT EXEC sp_OAMethod @compress, 'DecompressStringENC', @originalText OUT, @sTmp0 PRINT @originalText EXEC @hr = sp_OADestroy @sbCompressedBase64 EXEC @hr = sp_OADestroy @compress EXEC @hr = sp_OADestroy @sbIndex END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.