projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ab9b6c4
)
Add convert.
author
Tatsuo Ishii
Wed, 15 Aug 2001 07:10:12 +0000
(07:10 +0000)
committer
Tatsuo Ishii
Wed, 15 Aug 2001 07:10:12 +0000
(07:10 +0000)
doc/src/sgml/func.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/func.sgml
b/doc/src/sgml/func.sgml
index 6bb793a9c853a430b4bac4c4f98bd54c446f487c..9423e524fe9f46aca12502ebb7eb7913d2ec70f2 100644
(file)
--- 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