Hi

My data in my database is big5 encoded. How I can convert them to UTF-8?

Many thanks,

Re: conversion string between charactersets? by Torgeir

Torgeir
Tue Jul 20 13:18:41 CDT 2004

Frank wrote:

> My data in my database is big5 encoded. How I can convert them to UTF-8?
Hi

You might be able to do this with the ADODB.Stream object and
it's Charset property.

http://groups.google.com/advanced_group_search?q=Charset+%22ADODB+Stream+%22+group:*.scripting&hl=en&lr=&ie=UTF-8&c2coff=1&scoring=d

Use .Charset = "big5" for big5 and .Charset = "utf-8" for UTF-8.


--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scriptcenter/default.mspx

Re: conversion string between charactersets? by frank_hu

frank_hu
Tue Jul 20 19:04:49 CDT 2004

Thanks Torgeir,

But it does not solve my problem.

My question is how to convert existing big5 data in database to utf-8 data.
like '地址' to something string in UTF-8 encode.

Many thanks,





"Torgeir Bakken \(MVP\)" <Torgeir.Bakken-spam@hydro.com> wrote in message news:<#C5rAZobEHA.1248@TK2MSFTNGP11.phx.gbl>...
> Frank wrote:
>
> > My data in my database is big5 encoded. How I can convert them to UTF-8?
> Hi
>
> You might be able to do this with the ADODB.Stream object and
> it's Charset property.
>
> http://groups.google.com/advanced_group_search?q=Charset+%22ADODB+Stream+%22+group:*.scripting&hl=en&lr=&ie=UTF-8&c2coff=1&scoring=d
>
> Use .Charset = "big5" for big5 and .Charset = "utf-8" for UTF-8.