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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "CREATE TYPE" {bold} " allows the user to register a new user data type with Postgres for use in the current data base. The user who defines a type becomes its owner. Typename is the name of the new 
  2. type and must be unique within the types defined for this database. 
  3. " {} "Synopsis" {bold} "
  4. CREATE TYPE typename (
  5.         INPUT          = input_function
  6.       , OUTPUT         = output_function
  7.       , INTERNALLENGTH = (internallength | VARIABLE)
  8.     [ , EXTERNALLENGTH = (externallength | VARIABLE) ]
  9.     [ , ELEMENT        = element ]
  10.     [ , DELIMITER      = delimiter ]
  11.     [ , DEFAULT        = "default" ]
  12.     [ , SEND           = send_function ]
  13.     [ , RECEIVE        = receive_function ]
  14.     [ , PASSEDBYVALUE ]
  15. )
  16. " {code} "Notes" {bold} "
  17. Refer to DROP TYPE to remove an existing type. 
  18. See also CREATE FUNCTION, CREATE OPERATOR and the chapter on Large Objects in the PostgreSQL Programmer's Guide.
  19. "