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

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="SQL-CREATEFUNCTION">
  2.  <refmeta>
  3.   <refentrytitle>
  4.    CREATE FUNCTION
  5.   </refentrytitle>
  6.   <refmiscinfo>SQL - Language Statements</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname>
  10.    CREATE FUNCTION
  11.   </refname>
  12.   <refpurpose>
  13.    Defines a new function
  14.   </refpurpose>
  15.  </refnamediv>
  16.  <refsynopsisdiv>
  17.   <refsynopsisdivinfo>
  18.    <date>1998-09-09</date>
  19.   </refsynopsisdivinfo>
  20.   <synopsis>
  21. CREATE FUNCTION <replaceable class="parameter">name</replaceable> ( [ <replaceable class="parameter">ftype</replaceable> [, ...] ] )
  22.     RETURNS <replaceable class="parameter">rtype</replaceable>
  23.     AS <replaceable class="parameter">definition</replaceable>
  24.     LANGUAGE '<replaceable class="parameter">langname</replaceable>'
  25.   </synopsis>
  26.   
  27.   <refsect2 id="R2-SQL-CREATEFUNCTION-1">
  28.    <refsect2info>
  29.     <date>1998-09-09</date>
  30.    </refsect2info>
  31.    <title>
  32.     Inputs
  33.    </title>
  34.    <para>
  35.     <variablelist>
  36.      <varlistentry>
  37.       <term><replaceable class="parameter">name</replaceable></term>
  38.       <listitem>
  39.        <para>
  40. The name of a function to create.
  41.        </para>
  42.       </listitem>
  43.      </varlistentry>
  44.      <varlistentry>
  45.       <term><replaceable class="parameter">ftype</replaceable></term>
  46.       <listitem>
  47.        <para>
  48. The data type of function arguments.
  49.        </para>
  50.       </listitem>
  51.      </varlistentry>
  52.      <varlistentry>
  53.       <term><replaceable class="parameter">rtype</replaceable></term>
  54.       <listitem>
  55.        <para>
  56. The return data type.
  57.        </para>
  58.       </listitem>
  59.      </varlistentry>
  60.      <varlistentry>
  61.       <term><replaceable class="parameter">definition</replaceable></term>
  62.       <listitem>
  63.        <para>
  64. A string defining the function; the meaning depends on the language.
  65. It may be an internal function name, the path to an object file,
  66. an SQL query, or text in a procedural language.
  67.        </para>
  68.       </listitem>
  69.      </varlistentry>
  70.      <varlistentry>
  71.       <term><replaceable class="parameter">langname</replaceable></term>
  72.       <listitem>
  73.        <para>
  74. may be '<literal>C</literal>', '<literal>sql</literal>',
  75. '<literal>internal</literal>'
  76. or '<replaceable class="parameter">plname</replaceable>',
  77. where '<replaceable class="parameter">plname</replaceable>'
  78. is the name of a created procedural
  79. language. See <command>CREATE LANGUAGE</command> for details.
  80.        </para>
  81.       </listitem>
  82.      </varlistentry>
  83.     </variablelist>
  84.    </para>
  85.   </refsect2>
  86.   <refsect2 id="R2-SQL-CREATEFUNCTION-2">
  87.    <refsect2info>
  88.     <date>1998-09-09</date>
  89.    </refsect2info>
  90.    <title>
  91.     Outputs
  92.    </title>
  93.    <para>
  94.     <variablelist>
  95.      <varlistentry>
  96.       <term><computeroutput>
  97. CREATE
  98.        </computeroutput></term>
  99.       <listitem>
  100.        <para>
  101. This is returned if the command completes successfully.
  102.        </para>
  103.       </listitem>
  104.      </varlistentry>
  105.     </variablelist>
  106.    </para>
  107.   </refsect2>
  108.  </refsynopsisdiv>
  109.  <refsect1 id="R1-SQL-CREATEFUNCTION-1">
  110.   <refsect1info>
  111.    <date>1998-09-09</date>
  112.   </refsect1info>
  113.   <title>
  114.    Description
  115.   </title>
  116.   <para>
  117.    <command>CREATE FUNCTION</command> allows a
  118.    <productname>Postgres</productname> user
  119.    to register a function
  120.    with a database. Subsequently, this user is treated as the
  121.    owner of the function.
  122.   </para>
  123.   
  124.   <refsect2 id="R2-SQL-CREATEFUNCTION-3">
  125.    <refsect2info>
  126.     <date>1998-09-09</date>
  127.    </refsect2info>
  128.    <title>
  129.     Notes
  130.    </title>
  131.    <para>
  132.     Refer to the chapter on functions 
  133. in the <citetitle>PostgreSQL Programmer's Guide</citetitle>
  134.     for further information.
  135.    </para>
  136.    <para>
  137.     Use <command>DROP FUNCTION</command>
  138.     to drop user-defined functions.
  139.    </para>
  140.   <para>
  141.    <productname>Postgres</productname> allows function "overloading";
  142.    that is, the same name can be used for several different functions
  143.    so long as they have distinct argument types.  This facility must be
  144.    used with caution for INTERNAL and C-language functions, however.
  145.   </para>
  146.   <para>
  147.    Two INTERNAL functions cannot have the same C name without causing
  148.    errors at link time.  To get around that, give them different C names
  149.    (for example, use the argument types as part of the C names), then
  150.    specify those names in the AS clause of <command>CREATE FUNCTION</command>.
  151.    If the AS clause is left empty then <command>CREATE FUNCTION</command>
  152.    assumes the C name of the function is the same as the SQL name.
  153.   </para>
  154.   <para>
  155.    For dynamically-loaded C functions, the SQL name of the function must
  156.    be the same as the C function name, because the AS clause is used to
  157.    give the path name of the object file containing the C code.  In this
  158.    situation it is best not to try to overload SQL function names.  It
  159.    might work to load a C function that has the same C name as an internal
  160.    function or another dynamically-loaded function --- or it might not.
  161.    On some platforms the dynamic loader may botch the load in interesting
  162.    ways if there is a conflict of C function names.  So, even if it works
  163.    for you today, you might regret overloading names later when you try
  164.    to run the code somewhere else.
  165.   </para>
  166.   </refsect2>
  167.  </refsect1>
  168.   
  169.  <refsect1 id="R1-SQL-CREATEFUNCTION-2">
  170.   <title>
  171.    Usage
  172.   </title>
  173.   <para>
  174.    To create a simple SQL function:
  175.   <programlisting>
  176. CREATE FUNCTION one() RETURNS int4
  177.     AS 'SELECT 1 AS RESULT'
  178.     LANGUAGE 'sql';
  179. SELECT one() AS answer;
  180.    <computeroutput>
  181.     answer 
  182.     ------
  183.     1
  184.    </computeroutput>
  185.   </programlisting>
  186.   </para>
  187.   <para>
  188.    To create a C function, calling a routine from a user-created
  189.    shared library.  This particular routine calculates a check
  190.    digit and returns TRUE if the check digit in the function parameters
  191.    is correct. It is intended for use in a CHECK contraint.
  192.   </para>
  193.   <programlisting>
  194.    <userinput>
  195. CREATE FUNCTION ean_checkdigit(bpchar, bpchar) RETURNS bool
  196.     AS '/usr1/proj/bray/sql/funcs.so' LANGUAGE 'c';
  197.     
  198. CREATE TABLE product (
  199.     id        char(8) PRIMARY KEY,
  200.     eanprefix char(8) CHECK (eanprefix ~ '[0-9]{2}-[0-9]{5}')
  201.                       REFERENCES brandname(ean_prefix),
  202.     eancode   char(6) CHECK (eancode ~ '[0-9]{6}'),
  203.     CONSTRAINT ean    CHECK (ean_checkdigit(eanprefix, eancode))
  204. );
  205.    </userinput>
  206.   </programlisting>
  207.  </refsect1>
  208.  
  209.  <refsect1 id="R1-SQL-CREATEFUNCTION-3">
  210.   <title>
  211.    Bugs
  212.   </title>
  213.   <para>
  214.    A C function cannot return a set of values.
  215.   </para>
  216.  </refsect1>
  217.  <refsect1 id="R1-SQL-CREATEFUNCTION-4">
  218.   <title>
  219.    Compatibility
  220.   </title>
  221.   <para>
  222.    <command>CREATE FUNCTION</command> is
  223.    a <productname>Postgres</productname> language extension.
  224.    </para>
  225.   <refsect2 id="R2-SQL-CREATEFUNCTION-4">
  226.    <refsect2info>
  227.     <date>1998-09-09</date>
  228.    </refsect2info>
  229.    <title>
  230.     SQL/PSM
  231.    </title>
  232.    <para>
  233.     <note>
  234.      <para>
  235.       PSM stands for Persistent Stored Modules. It is a procedural
  236.       language and it was originally hoped that PSM would be ratified
  237.       as an official standard by late 1996. As of mid-1998, this
  238.       has not yet happened, but it is hoped that PSM will
  239.       eventually become a standard.
  240.      </para>
  241.     </note>
  242.     SQL/PSM <command>CREATE FUNCTION</command> has the following syntax:
  243.     <synopsis>
  244. CREATE FUNCTION <replaceable class="parameter">name</replaceable>
  245.     ( [ [ IN | OUT | INOUT ] <replaceable class="parameter">eter</replaceable>eable>eable> <replaceable
  246.       class="parameter">type</replaceable> [, ...] ] )
  247.      RETURNS <replaceable class="parameter">rtype</replaceable>
  248.      LANGUAGE '<replaceable class="parameter">langname</replaceable>'
  249.      ESPECIFIC <replaceable class="parameter">routine</replaceable>
  250.      <replaceable class="parameter">SQL-statement</replaceable>
  251.     </synopsis>
  252.    </para>
  253.   </refsect2>
  254.  </refsect1>
  255. </refentry>
  256. <!-- Keep this comment at the end of the file
  257. Local variables:
  258. mode: sgml
  259. sgml-omittag:nil
  260. sgml-shorttag:t
  261. sgml-minimize-attributes:nil
  262. sgml-always-quote-attributes:t
  263. sgml-indent-step:1
  264. sgml-indent-data:t
  265. sgml-parent-document:nil
  266. sgml-default-dtd-file:"../reference.ced"
  267. sgml-exposed-tags:nil
  268. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  269. sgml-local-ecat-files:nil
  270. End:
  271. -->