Annotation of FM2SQL/export/com/ddtek/slutil/transliteration.properties, revision 1.1

1.1     ! casties     1: # Transliteration mapping
        !             2: #
        !             3: # The following values can be used for 'type':
        !             4: #     TABLE: Use the conversion table of the Driver
        !             5: #     CLASS: Use the conversion class of the Driver
        !             6: #     VM:    Use the conversion classes of the Virtual Machine
        !             7: #     SUNIO: Use the sun.io classes of the Virtual Machine
        !             8: #     ASCII: Use hi-byte stripping (built-in algorithm)
        !             9: #     UCS2:  Use double-byte Unicode (built-in algorithm)
        !            10: #     UTF8:  Use UTF8 (built-in algorithm)
        !            11: #
        !            12: # Resolve aliases for encoding names to canonical (VM) names
        !            13: # The alias name is treated case insensitive (enter the alias name in uppercase)
        !            14: # but resolution is case sensitive
        !            15: # CP(num) defaults to Cp(num)
        !            16: # (num) defaults to Cp(num)
        !            17: translit.alias.ISO8859-1=ISO8859_1
        !            18: translit.alias.ISO88591=ISO8859_1
        !            19: translit.alias.ISO_8859-1=ISO8859_1
        !            20: translit.alias.8859-1=ISO8859_1
        !            21: translit.alias.37=Cp037
        !            22: translit.alias.28709=Cp037
        !            23: translit.alias.EBCDIC=37
        !            24: translit.alias.932=MS932
        !            25: translit.alias.PCK=MS932
        !            26: translit.alias.IBM-932=MS932
        !            27: translit.alias.EUCJP=EUC_JP
        !            28: translit.alias.IBM-EUCJP=EUC_JP
        !            29: translit.alias.936=MS936
        !            30: translit.alias.IBM-943=Cp943
        !            31: translit.alias.897=Cp943
        !            32: translit.alias.941=Cp943
        !            33: translit.alias.949=MS949
        !            34: translit.alias.950=MS950
        !            35: translit.alias.1051=ROMAN8             # HP Roman8
        !            36: translit.alias.ISO_1=ISO8859_1         # Sybase, SQLServer7
        !            37: translit.alias.0333=ISO8859_1          # Informix
        !            38: translit.alias.819=ISO8859_1           # Informix
        !            39: translit.alias.1200=UCS2               # DB2
        !            40: translit.alias.1208=UTF-8              # DB2
        !            41: translit.alias.UTF8=UTF-8              # Sybase "utf8"
        !            42: translit.alias.ORA871=UTF8             # Oracle
        !            43: translit.alias.CP936=MS936             # SQLServer
        !            44: translit.alias.CP950=MS950             # SQLServer
        !            45: translit.alias.CP932=MS932             # SQLServer
        !            46: translit.alias.CP949=MS949             # SQLServer
        !            47: #
        !            48: # Override special cases:
        !            49: #
        !            50: # HP Roman8 not available in JDK
        !            51: translit.type.ROMAN8=TABLE
        !            52: translit.name.ROMAN8=ROMAN8
        !            53: # VM transliteration of Cp037 (IBM-37, Standard EBCDIC) contains errors
        !            54: translit.type.Cp037=TABLE
        !            55: translit.name.Cp037=37
        !            56: # VM transliteration of Cp1252 (Windows) contains errors
        !            57: translit.type.Cp1252=TABLE
        !            58: translit.name.Cp1252=1252
        !            59: # Allow hi-byte stripping for ISO8859_1 (not entirely correct, but speedy)
        !            60: translit.type.ISO8859_1=ASCII

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>