SQL Server
SQL Server
Convert HTML File to XML File
See more HTML-to-XML/Text Examples
Convert HTML file to XML file.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
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @htmlToXml int
EXEC @hr = sp_OACreate 'Chilkat.HtmlToXml', @htmlToXml OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
-- Indicate the charset of the output XML we'll want.
EXEC sp_OASetProperty @htmlToXml, 'XmlCharset', 'utf-8'
EXEC sp_OAMethod @htmlToXml, 'ConvertFile', @success OUT, 'test.html', 'out.xml'
IF @success <> 1
BEGIN
EXEC sp_OAGetProperty @htmlToXml, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
END
ELSE
BEGIN
PRINT 'Success'
END
EXEC @hr = sp_OADestroy @htmlToXml
END
GO