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

数据库系统

开发平台:

Unix_Linux

  1. Installation instructions for PL/Tcl
  2. 1.  Build the pltcl shared library
  3.     The Makefile for the pltcl shared library assumes the sources
  4.     for PostgreSQL are in /usr/local/src/postgresql-6.2.1/src. Edit
  5.     if not.
  6.     The Makefile depends on the tclConfig.sh file that get's installed
  7.     with Tcl. This should either be in /usr/lib or in /usr/local/lib.
  8.     If it is in a different place, edit mkMakefile.tcldefs or make a
  9.     symbolic link to it here.
  10.     Type make and the shared library should get built.
  11. 2.  Now create the PL/Tcl language in PostgreSQL
  12.     Since the pg_language system catalog is private to each database,
  13.     the new language can be created only for individual databases,
  14.     or in the template1 database. In the latter case, it is
  15.     automatically available in all newly created databases.
  16.     The commands to create the new language are:
  17.         create function pltcl_call_handler () returns opaque
  18.      as 'path-to-pltcl-shared-lib'
  19.      language 'C';
  20. create trusted procedural language 'pltcl'
  21. handler pltcl_call_handler
  22. lancompiler 'PL/Tcl';
  23.     The trusted keyword on create procedural language tells PostgreSQL,
  24.     that all users (not only those with superuser privilege) are
  25.     permitted to create functions with LANGUAGE 'pltcl'. This is
  26.     absolutely safe, because there is nothing a normal user can do
  27.     with PL/Tcl, to get around access restrictions he/she has.
  28. 3.  Use PL/Tcl
  29.     Read pltcl_guide.txt to learn how to write functions and
  30.     trigger procedures in PL/Tcl.