Go (SQL Server) Convert a File from Utf-8 to ANSI (such as Windows-1252)

Source: Internet
Author: User



This article transferred from: https://example-code.com/sql/charset_convert_file_from_utf8_to_ansi.asp


 
 
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @charset int
    EXEC @hr = sp_OACreate ‘Chilkat_9_5_0.Charset‘, @charset OUT
    IF @hr <> 0
    BEGIN
        PRINT ‘Failed to create ActiveX component‘
        RETURN
    END

    DECLARE @success int
    EXEC sp_OAMethod @charset, ‘UnlockComponent‘, @success OUT, ‘Anything for 30-day trial.‘
    IF STR(@success) <> 1
      BEGIN
        EXEC sp_OAGetProperty @charset, ‘LastErrorText‘, @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @charset
        RETURN
      END

    EXEC sp_OASetProperty @charset, ‘FromCharset‘, ‘utf-8‘
    EXEC sp_OASetProperty @charset, ‘ToCharset‘, ‘ANSI‘

    --  We could alternatively be more specific and say "Windows-1252".
    --  The term "ANSI" means -- whatever character encoding is defined as the ANSI
    --  encoding for the computer.  In Poland, for example, it would be the single-byte-per-char
    --  used to represnt Eastern European language chars, which is Windows-1250.
    EXEC sp_OASetProperty @charset, ‘ToCharset‘, ‘Windows-1252‘

    EXEC sp_OAMethod @charset, ‘ConvertFile‘, @success OUT, ‘qa_data/txt/cafeUtf8.txt‘, ‘qa_output/cafeAnsi.txt‘
    IF STR(@success) <> 1
      BEGIN
        EXEC sp_OAGetProperty @charset, ‘LastErrorText‘, @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @charset
        RETURN
      END


    PRINT ‘Success.‘

    EXEC @hr = sp_OADestroy @charset


END
GO


[Go] (SQL Server) Convert a File from Utf-8 to ANSI (such as Windows-1252)


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.