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

数据库系统

开发平台:

Unix_Linux

  1. This directory contains definitions for a couple of PostgreSQL
  2. external types, for a couple of international-standard namespaces:
  3. ISBN (books) and ISSN (serials).  Rather than just using a char()
  4. member of the appropriate length, I wanted my database to include
  5. the validity-checking that both these numbering systems were designed
  6. to encompass.  A little bit of research revealed the formulae
  7. for computing the check digits, and I also included some validity
  8. constraints on the number of hyphens.
  9. The internal representation of these types is intended to be
  10. compatible with `char16', in the (perhaps vain) hope that
  11. this will make it possible to create indices of these types
  12. using char16_ops.
  13. These are based on Tom Ivar Helbekkmo's IP address type definition,
  14. from which I have copied the entire form of the implementation.
  15. Garrett A. Wollman, August 1998