From 397f65d102b7f9998411f2a8c2d1c66dfe712320 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Wed, 15 Aug 2001 07:10:12 +0000 Subject: [PATCH] Add convert. --- doc/src/sgml/func.sgml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 6bb793a9c85..9423e524fe9 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ - + Functions and Operators @@ -929,6 +929,20 @@ A + + convert(string text, + [src_encoding name,] + dest_encoding name) + text + Converts string using dest_encoding. + The original encoding is specified by src_encoding. + If src_encoding is omitted, database encoding + is assumed. + + convert('text_in_unicode','UNICODE','LATIN1') + text_in_unicode (represented in ISO-8859-1) + + initcap(text) text -- 2.39.5