mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 23:23:02 +01:00
Document CREATE COLLATION
This commit is contained in:
parent
4fd1da9b2b
commit
cb8344267e
@ -170,3 +170,26 @@ Not all implemented character sets and collations need to be listed in the manif
|
|||||||
|
|
||||||
After installed in the server, they should be registered in the database's system tables (rdb$character_sets and rdb$collations).
|
After installed in the server, they should be registered in the database's system tables (rdb$character_sets and rdb$collations).
|
||||||
One script file with stored procedures to register/unregister is provided in misc/intl.sql.
|
One script file with stored procedures to register/unregister is provided in misc/intl.sql.
|
||||||
|
|
||||||
|
In FB 2.1, don't use misc/intl.sql for collations anymore, now a DDL command exist for this task.
|
||||||
|
|
||||||
|
Syntax:
|
||||||
|
CREATE COLLATION <name>
|
||||||
|
FOR <charset>
|
||||||
|
[ FROM <base> | FROM EXTERNAL ('<name>') ]
|
||||||
|
[ NO PAD | PAD SPACE ]
|
||||||
|
[ CASE SENSITIVE | CASE INSENSITIVE ]
|
||||||
|
[ ACCENT SENSITIVE | ACCENT INSENSITIVE ]
|
||||||
|
[ '<specific-attributes>' ]
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
1) CREATE COLLATION UNICODE_ENUS_CI
|
||||||
|
FOR UTF8
|
||||||
|
FROM UNICODE
|
||||||
|
CASE INSENSITIVE
|
||||||
|
'LOCALE=en_US';
|
||||||
|
|
||||||
|
2) CREATE COLLATION NEW_COLLATION
|
||||||
|
FOR WIN1252
|
||||||
|
PAD SPACE;
|
||||||
|
-- NEW_COLLATION should be declared in .conf file in root/intl directory
|
||||||
|
@ -330,6 +330,8 @@
|
|||||||
3) Collation attributes
|
3) Collation attributes
|
||||||
4) CREATE/DROP COLLATION statements
|
4) CREATE/DROP COLLATION statements
|
||||||
5) SHOW COLLATION and collation extraction in ISQL
|
5) SHOW COLLATION and collation extraction in ISQL
|
||||||
|
See also:
|
||||||
|
/doc/README.intl.txt
|
||||||
Contributor(s):
|
Contributor(s):
|
||||||
Adriano dos Santos Fernandes <adrianosf at uol.com.br>
|
Adriano dos Santos Fernandes <adrianosf at uol.com.br>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user