charset.conf
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #
  2. # Example PostgreSQL charsets control file.
  3. #
  4. # Should be placed in $PG_DATA directory.
  5. #
  6. # On the fly recoding charsets, based on client's IP address.
  7. # For example: koi8-u (koi) <-> cp1251 (win) <-> cp866 (alt)
  8. # Base charset for backend
  9. # Most Unices use koi8-r(u) as base charset. But Solaris
  10. # use iso8859-5 and some networkless workstations use cp866.
  11. BaseCharset koi
  12. # There are recode table definitions from base charset to
  13. # other. Table names are relative to $PG_DATA directory.
  14. # Tables are taken from Russian Apache <http://apache.lexa.ru>.
  15. RecodeTable koi alt koi-alt.tab
  16. RecodeTable koi win koi-win.tab
  17. RecodeTable koi iso koi-iso.tab
  18. RecodeTable koi koi koi-koi.tab
  19. RecodeTable alt win othertabs/alt-win.tab
  20. RecodeTable alt koi othertabs/alt-koi.tab
  21. RecodeTable iso koi othertabs/iso-koi.tab
  22. # Local loopback
  23. HostCharset 127.0.0.1 koi
  24. # Yet another Unix (maybe ;)
  25. HostCharset 192.168.0.1 koi
  26. # There are Windows on 192.168.1.64 through 192.168.1.95
  27. HostCharset 192.168.1.64/27 win
  28. # There are cp866 (alt) systems on 192.168.2.3 through
  29. # 192.168.2.7 (exept 192.168.2.4 - see below)
  30. HostCharset 192.168.2.3-192.168.2.7 alt
  31. # This is exeption from previous rule!
  32. HostCharset 192.168.2.4 win