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

数据库系统

开发平台:

Unix_Linux

  1. <Chapter Id="xplang">
  2. <Title>Procedural Languages</Title>
  3. <!-- **********
  4.      * General information about procedural language support
  5.      **********
  6. -->
  7. <Para>
  8.     Beginning with the release of version 6.3,
  9.     <ProductName>Postgres</ProductName> supports
  10.     the definition of procedural languages.
  11.     In the case of a function or trigger
  12.     procedure defined in a procedural language, the database has
  13.     no builtin knowlege how to interpret the functions source
  14.     text. Instead, the calls are passed into
  15.     a handler that knows the details of the language. The
  16.     handler itself is a special programming language function
  17.     compiled into a shared object
  18.     and loaded on demand.
  19. </Para>
  20. <!-- **********
  21.      * Installation of procedural languages
  22.      **********
  23. -->
  24. <Sect1>
  25. <Title>Installing Procedural Languages</Title>
  26. <Procedure>
  27.     <Title>
  28.     Procedural Language Installation
  29.     </Title>
  30.     <para>
  31.     A procedural language is installed in the database in three steps.
  32.     </para>
  33. <Step Performance="Required">
  34.     <Para>
  35.         The shared object for the language handler
  36. must be compiled and installed. By default the
  37. handler for PL/pgSQL is built and installed into the
  38. database library directory. If Tcl/Tk support is
  39. configured in, the handler for PL/Tcl is also built
  40. and installed in the same location.
  41.     </Para>
  42.     <Para>
  43.         Writing a handler for a new procedural language (PL)
  44. is outside the scope of this manual. 
  45.     </Para>
  46. </Step>
  47. <Step Performance="Required">
  48.     <Para>
  49.         The handler must be declared with the command
  50. <ProgramListing>
  51.     CREATE FUNCTION <Replaceable>handler_function_name</Replaceable> () RETURNS OPAQUE AS
  52.         '<Filename>path-to-shared-object</Filename>' LANGUAGE 'C';
  53. </ProgramListing>
  54. The special return type of <Acronym>OPAQUE</Acronym> tells
  55. the database, that this function does not return one of
  56. the defined base- or composite types and is not directly usable
  57. in <Acronym>SQL</Acronym> statements.
  58.     </Para>
  59. </Step>
  60. <Step Performance="Required">
  61.     <Para>
  62.      The PL must be declared with the command
  63. <ProgramListing>
  64.     CREATE [ TRUSTED ] PROCEDURAL LANGUAGE '<Replaceable>language-name</Replaceable>'
  65.         HANDLER <Replaceable>handler_function_name</Replaceable>
  66. LANCOMPILER '<Replaceable>description</Replaceable>';
  67. </ProgramListing>
  68. The optional keyword <Acronym>TRUSTED</Acronym> tells
  69. if ordinary database users that have no superuser
  70. privileges can use this language to create functions
  71. and trigger procedures. Since PL functions are
  72. executed inside the database backend it should only be used for
  73. languages that don't gain access to database backends
  74. internals or the filesystem. The languages PL/pgSQL and
  75. PL/Tcl are known to be trusted.
  76.     </Para>
  77. </Step>
  78. </Procedure>
  79. <Procedure>
  80.     <Title>Example</Title>
  81.     <Step Performance="Required">
  82.     <Para>
  83.         The following command tells the database where to find the 
  84. shared object for the PL/pgSQL languages call handler function.
  85.     </Para>
  86.     <ProgramListing>
  87.     CREATE FUNCTION plpgsql_call_handler () RETURNS OPAQUE AS
  88.         '/usr/local/pgsql/lib/plpgsql.so' LANGUAGE 'C';
  89.     </ProgramListing>
  90.     </Step>
  91.     <Step Performance="Required">
  92.     <Para>
  93.         The command
  94.     </Para>
  95.     <ProgramListing>
  96.     CREATE TRUSTED PROCEDURAL LANGUAGE 'plpgsql'
  97.         HANDLER plpgsql_call_handler
  98.         LANCOMPILER 'PL/pgSQL';
  99.     </ProgramListing>
  100.     <Para>
  101.         then defines that the previously declared call handler
  102. function should be invoked for functions and trigger procedures
  103. where the language attribute is 'plpgsql'.
  104.     </Para>
  105.     <Para>
  106.         PL handler functions have a special call interface that is
  107. different from regular C language functions. One of the arguments
  108. given to the handler is the object ID in the <FileName>pg_proc</FileName>
  109. tables entry for the function that should be executed.
  110.         The handler examines various system catalogs to analyze the
  111. functions call arguments and it's return data type. The source
  112. text of the functions body is found in the prosrc attribute of
  113. <FileName>pg_proc</FileName>.
  114. Due to this, in contrast to C language functions, PL functions
  115. can be overloaded like SQL language functions. There can be
  116. multiple different PL functions having the same function name,
  117. as long as the call arguments differ.
  118.     </Para>
  119.     <Para>
  120.         Procedural languages defined in the <FileName>template1</FileName>
  121. database are automatically defined in all subsequently created
  122. databases. So the database administrator can decide which
  123. languages are available by default.
  124.     </Para>
  125.     </Step>
  126. </Procedure>
  127. </Sect1> <!-- **** End of PL installation **** -->
  128. <!-- **********
  129.      * The procedural language PL/pgSQL
  130.      **********
  131. -->
  132. <Sect1>
  133. <Title>PL/pgSQL</Title>
  134. <Para>
  135.     PL/pgSQL is a loadable procedural language for the
  136.     <ProductName>Postgres</ProductName> database system.
  137. </Para>
  138. <Para>
  139.     This package was originally written by Jan Wieck.
  140. </Para>
  141. <!-- **** PL/pgSQL overview **** -->
  142. <Sect2>
  143. <Title>Overview</Title>
  144. <Para>
  145.     The design goals of PL/pgSQL were to create a loadable procedural
  146.     language that
  147.     <ItemizedList>
  148.     <ListItem>
  149. <Para>
  150.         can be used to create functions and trigger procedures,
  151. </Para>
  152.     </ListItem>
  153.     <ListItem>
  154. <Para>
  155.         adds control structures to the <Acronym>SQL</Acronym> language,
  156. </Para>
  157.     </ListItem>
  158.     <ListItem>
  159. <Para>
  160.         can perform complex computations,
  161. </Para>
  162.     </ListItem>
  163.     <ListItem>
  164. <Para>
  165.         inherits all user defined types, functions and operators,
  166. </Para>
  167.     </ListItem>
  168.     <ListItem>
  169. <Para>
  170.         can be defined to be trusted by the server,
  171. </Para>
  172.     </ListItem>
  173.     <ListItem>
  174. <Para>
  175.         is easy to use.
  176. </Para>
  177.     </ListItem>
  178.     </ItemizedList>
  179. </Para>
  180. <Para>
  181.     The PL/pgSQL call handler parses the functions source text and
  182.     produces an internal binary instruction tree on the first time, the
  183.     function is called by a backend. The produced bytecode is identified
  184.     in the call handler by the object ID of the function. This ensures,
  185.     that changing a function by a DROP/CREATE sequence will take effect
  186.     without establishing a new database connection. 
  187. </Para>
  188. <Para>
  189.     For all expressions and <Acronym>SQL</Acronym> statements used in
  190.     the function, the PL/pgSQL bytecode interpreter creates a
  191.     prepared execution plan using the SPI managers SPI_prepare() and
  192.     SPI_saveplan() functions. This is done the first time, the individual
  193.     statement is processed in the PL/pgSQL function. Thus, a function with
  194.     conditional code that contains many statements for which execution
  195.     plans would be required, will only prepare and save those plans
  196.     that are really used during the entire lifetime of the database
  197.     connection.
  198. </Para>
  199. <Para>
  200.     Except for input-/output-conversion and calculation functions
  201.     for user defined types, anything that can be defined in C language
  202.     functions can also be done with PL/pgSQL. It is possible to
  203.     create complex conditional computation functions and later use
  204.     them to define operators or use them in functional indices.
  205. </Para>
  206. </Sect2>
  207. <!-- **** PL/pgSQL Description **** -->
  208. <Sect2>
  209. <Title>Description</Title>
  210. <!-- **** PL/pgSQL structure **** -->
  211. <Sect3>
  212. <Title>Structure of PL/pgSQL</Title>
  213. <Para>
  214.     The PL/pgSQL language is case insensitive. All keywords and
  215.     identifiers can be used in mixed upper- and lowercase.
  216. </Para>
  217. <Para>
  218.     PL/pgSQL is a block oriented language. A block is defined as
  219. <ProgramListing>
  220.     [&lt;&lt;label&gt;&gt;]
  221.     [DECLARE
  222.         <replaceable>declarations</replaceable>]
  223.     BEGIN
  224.         <replaceable>statements</replaceable>
  225.     END;
  226. </ProgramListing>
  227.     There can be any number of subblocks in the statement section
  228.     of a block. Subblocks can be used to hide variables from outside a
  229.     block of statements. The variables
  230.     declared in the declarations section preceding a block are
  231.     initialized to their default values every time the block is entered,
  232.     not only once per function call.
  233. </Para>
  234.   
  235. <Para>
  236.     It is important not to misunderstand the meaning of BEGIN/END for
  237.     grouping statements in PL/pgSQL and the database commands for
  238.     transaction control. Functions and trigger procedures cannot
  239.     start or commit transactions and <ProductName>Postgres</ProductName>
  240.     does not have nested transactions.
  241. </Para>
  242. </Sect3>
  243. <!-- **** PL/pgSQL comments **** -->
  244. <Sect3>
  245. <Title>Comments</Title>
  246. <Para>
  247.     There are two types of comments in PL/pgSQL. A double dash '--'
  248.     starts a comment that extends to the end of the line. A '/*'
  249.     starts a block comment that extends to the next occurence of '*/'.
  250.     Block comments cannot be nested, but double dash comments can be
  251.     enclosed into a block comment and a double dash can hide
  252.     the block comment delimiters '/*' and '*/'.
  253. </Para>
  254. </Sect3>
  255. <!-- **** PL/pgSQL declarations **** -->
  256. <Sect3>
  257. <Title>Declarations</Title>
  258. <Para>
  259.     All variables, rows and records used in a block or it's
  260.     subblocks must be declared in the declarations section of a block
  261.     except for the loop variable of a FOR loop iterating over a range
  262.     of integer values. Parameters given to a PL/pgSQL function are
  263.     automatically declared with the usual identifiers $n.
  264.     The declarations have the following syntax:
  265. </Para>
  266. <VariableList>
  267. <VarListEntry>
  268. <Term>
  269. <Replaceable>name</Replaceable> [ CONSTANT ] <Replaceable>type</Replaceable> [ NOT NULL ] [ DEFAULT | := <Replaceable>value</Replaceable> ];
  270. </Term>
  271. <ListItem>
  272. <Para>
  273.     Declares a variable of the specified base type. If the variable
  274.     is declared as CONSTANT, the value cannot be changed. If NOT NULL
  275.     is specified, an assignment of a NULL value results in a runtime
  276.     error. Since the default value of all variables is the
  277.     <Acronym>SQL</Acronym> NULL value, all variables declared as NOT NULL
  278.     must also have a default value specified.
  279. </Para>
  280. <Para>
  281.     The default value is evaluated ever time the function is called. So
  282.     assigning '<Replaceable>now</Replaceable>' to a variable of type
  283.     <Replaceable>datetime</Replaceable> causes the variable to have the
  284.     time of the actual function call, not when the function was
  285.     precompiled into it's bytecode.
  286. </Para>
  287. </ListItem>
  288. </VarListEntry>
  289. <VarListEntry>
  290. <Term>
  291. <Replaceable>name</Replaceable> <Replaceable>class</Replaceable>%ROWTYPE;
  292. </Term>
  293. <ListItem>
  294. <Para>
  295.     Declares a row with the structure of the given class. Class must be
  296.     an existing table- or viewname of the database. The fields of the row
  297.     are accessed in the dot notation. Parameters to a function can
  298.     be composite types (complete table rows). In that case, the
  299.     corresponding identifier $n will be a rowtype, but it
  300.     must be aliased using the ALIAS command described below. Only the user
  301.     attributes of a table row are accessible in the row, no Oid or other
  302.     system attributes (hence the row could be from a view and view rows
  303.     don't have useful system attributes).
  304. </Para>
  305. <Para>
  306.     The fields of the rowtype inherit the tables fieldsizes 
  307.     or precision for char() etc. data types.
  308. </Para>
  309. </ListItem>
  310. </VarListEntry>
  311. <VarListEntry>
  312. <Term>
  313. <Replaceable>name</Replaceable> RECORD;
  314. </Term>
  315. <ListItem>
  316. <Para>
  317.     Records are similar to rowtypes, but they have no predefined structure.
  318.     They are used in selections and FOR loops to hold one actual
  319.     database row from a SELECT operation. One and the same record can be
  320.     used in different selections. Accessing a record or an attempt to assign
  321.     a value to a record field when there is no actual row in it results
  322.     in a runtime error.
  323. </Para>
  324. <Para>
  325.     The NEW and OLD rows in a trigger are given to the procedure as
  326.     records. This is necessary because in <ProductName>Postgres</ProductName>
  327.     one and the same trigger procedure can handle trigger events for
  328.     different tables.
  329. </Para>
  330. </ListItem>
  331. </VarListEntry>
  332. <VarListEntry>
  333. <Term>
  334. <Replaceable>name</Replaceable> ALIAS FOR $n;
  335. </Term>
  336. <ListItem>
  337. <Para>
  338.     For better readability of the code it is possible to define an alias
  339.     for a positional parameter to a function.
  340. </Para>
  341. <Para>
  342.     This aliasing is required for composite types given as arguments to
  343.     a function. The dot notation $1.salary as in SQL functions is not
  344.     allowed in PL/pgSQL.
  345. </Para>
  346. </ListItem>
  347. </VarListEntry>
  348. <VarListEntry>
  349. <Term>
  350. RENAME <Replaceable>oldname</Replaceable> TO <Replaceable>newname</Replaceable>;
  351. </Term>
  352. <ListItem>
  353. <Para>
  354.     Change the name of a variable, record or row. This is useful
  355.     if NEW or OLD should be referenced by another name inside a 
  356.     trigger procedure.
  357. </Para>
  358. </ListItem>
  359. </VarListEntry>
  360. </VariableList>
  361. </Sect3>
  362. <!-- **** PL/pgSQL data types **** -->
  363. <Sect3>
  364. <Title>Data Types</Title>
  365. <Para>
  366.     The type of a varible can be any of the existing basetypes of
  367.     the database. <Replaceable>type</Replaceable> in the declarations
  368.     section above is defined as:
  369. </Para>
  370. <Para>
  371.     <ItemizedList>
  372.     <ListItem>
  373.         <Para>
  374. <ProductName>Postgres</ProductName>-basetype
  375. </Para>
  376.     </ListItem>
  377.     <ListItem>
  378.         <Para>
  379. <Replaceable>variable</Replaceable>%TYPE
  380. </Para>
  381.     </ListItem>
  382.     <ListItem>
  383.         <Para>
  384. <Replaceable>class.field</Replaceable>%TYPE
  385. </Para>
  386.     </ListItem>
  387.     </ItemizedList>
  388. </Para>
  389. <Para>
  390.     <Replaceable>variable</Replaceable> is the name of a variable,
  391. previously declared in the 
  392.     same function, that is visible at this point.
  393. </Para>
  394. <Para>
  395.     <Replaceable>class</Replaceable> is the name of an existing table
  396.     or view where <Replaceable>field</Replaceable> is the name of
  397.     an attribute.
  398. </Para>
  399. <Para>
  400.     Using the <Replaceable>class.field</Replaceable>%TYPE
  401.     causes PL/pgSQL to lookup the attributes definitions at the
  402.     first call to the funciton during the lifetime of a backend.
  403.     Have a table with a char(20) attribute and some PL/pgSQL functions
  404.     that deal with it's content in local variables. Now someone
  405.     decides that char(20) isn't enough, dumps the table, drops it,
  406.     recreates it now with the attribute in question defined as
  407.     char(40) and restores the data. Ha - he forgot about the
  408.     funcitons. The computations inside them will truncate the values
  409.     to 20 characters. But if they are defined using the
  410.     <Replaceable>class.field</Replaceable>%TYPE
  411.     declarations, they will automagically handle the size change or
  412.     if the new table schema defines the attribute as text type.
  413. </Para>
  414. </Sect3>
  415. <!-- **** PL/pgSQL expressions **** -->
  416. <Sect3>
  417. <Title>Expressions</Title>
  418. <Para>
  419.     All expressions used in PL/pgSQL statements are processed using
  420.     the backends executor. Expressions which appear to contain
  421. constants may in fact require run-time evaluation (e.g. 'now' for the
  422. datetime type) so
  423. it is impossible for the PL/pgSQL parser
  424.     to identify real constant values other than the NULL keyword. All
  425.     expressions are evaluated internally by executing a query
  426.     <ProgramListing>
  427.     SELECT <Replaceable>expression</Replaceable>
  428.     </ProgramListing>
  429.     using the SPI manager. In the expression, occurences of variable
  430.     identifiers are substituted by parameters and the actual values from
  431.     the variables are passed to the executor in the parameter array. All
  432.     expressions used in a PL/pgSQL function are only prepared and
  433.     saved once.
  434. </Para>
  435. <Para>
  436.     The type checking done by the <productname>Postgres</productname>
  437.     main parser has some side
  438.     effects to the interpretation of constant values. In detail there
  439.     is a difference between what the two functions
  440.     <ProgramListing>
  441.     CREATE FUNCTION logfunc1 (text) RETURNS datetime AS '
  442.         DECLARE
  443.             logtxt ALIAS FOR $1;
  444.         BEGIN
  445.             INSERT INTO logtable VALUES (logtxt, ''now'');
  446.             RETURN ''now'';
  447.         END;
  448.     ' LANGUAGE 'plpgsql';
  449.     </ProgramListing>
  450.     and
  451.     <ProgramListing>
  452.     CREATE FUNCTION logfunc2 (text) RETURNS datetime AS '
  453.         DECLARE
  454.             logtxt ALIAS FOR $1;
  455.             curtime datetime;
  456.         BEGIN
  457.             curtime := ''now'';
  458.             INSERT INTO logtable VALUES (logtxt, curtime);
  459.             RETURN curtime;
  460.         END;
  461.     ' LANGUAGE 'plpgsql';
  462.     </ProgramListing>
  463.     do. In the case of logfunc1(), the <ProductName>Postgres</ProductName>
  464.     main parser
  465.     knows when preparing the plan for the INSERT, that the string 'now'
  466.     should be interpreted as datetime because the target field of logtable
  467.     is of that type. Thus, it will make a constant from it at this time
  468.     and this constant value is then used in all invocations of logfunc1()
  469.     during the lifetime of the backend. Needless to say that this isn't what the
  470.     programmer wanted.
  471. </Para>
  472. <Para>
  473.     In the case of logfunc2(), the <ProductName>Postgres</ProductName> 
  474.     main parser does not know
  475.     what type 'now' should become and therefor it returns a datatype of
  476.     text containing the string 'now'. During the assignment
  477.     to the local variable curtime, the PL/pgSQL interpreter casts this
  478.     string to the datetime type by calling the text_out() and datetime_in()
  479.     functions for the conversion.
  480. </Para>
  481. <Para>
  482.     This type checking done by the <ProductName>Postgres</ProductName> main
  483.     parser got implemented after PL/pgSQL was nearly done.
  484.     It is a difference between 6.3 and 6.4 and affects all functions
  485.     using the prepared plan feature of the SPI manager.
  486.     Using a local
  487.     variable in the above manner is currently the only way in PL/pgSQL to get
  488.     those values interpreted correctly.
  489. </Para>
  490. <Para>
  491.     If record fields are used in expressions or statements, the data types of
  492.     fields should not change between calls of one and the same expression.
  493.     Keep this in mind when writing trigger procedures that handle events
  494.     for more than one table.
  495. </Para>
  496. </Sect3>
  497. <!-- **** PL/pgSQL statements **** -->
  498. <Sect3>
  499. <Title>Statements</Title>
  500. <Para>
  501.     Anything not understood by the PL/pgSQL parser as specified below
  502.     will be put into a query and sent down to the database engine
  503.     to execute. The resulting query should not return any data.
  504. </Para>
  505. <VariableList>
  506. <VarListEntry>
  507. <Term>
  508. Assignment
  509. </Term>
  510. <ListItem>
  511. <Para>
  512.     An assignment of a value to a variable or row/record field is
  513.     written as
  514.     <ProgramListing>
  515.     <Replaceable>identifier</Replaceable> := <Replaceable>expression</Replaceable>;
  516.     </ProgramListing>
  517.     If the expressions result data type doesn't match the variables
  518.     data type, or the variable has a size/precision that is known
  519.     (as for char(20)), the result value will be implicitly casted by
  520.     the PL/pgSQL bytecode interpreter using the result types output- and
  521.     the variables type input-functions. Note that this could potentially
  522.     result in runtime errors generated by the types input functions.
  523. </Para>
  524. <Para>
  525.     An assignment of a complete selection into a record or row can
  526.     be done by
  527.     <ProgramListing>
  528.     SELECT <Replaceable>expressions</Replaceable> INTO <Replaceable>target</Replaceable> FROM ...;
  529.     </ProgramListing>
  530.     <Replaceable>target</Replaceable> can be a record, a row variable or a
  531.     comma separated list of variables and record-/row-fields.
  532. </Para>
  533. <Para>
  534.     if a row or a variable list is used as target, the selected values
  535.     must exactly match the structure of the target(s) or a runtime error
  536.     occurs. The FROM keyword can be followed by any valid qualification,
  537.     grouping, sorting etc. that can be given for a SELECT statement.
  538. </Para>
  539. <Para>
  540.     There is a special variable named FOUND of type bool that can be used
  541.     immediately after a SELECT INTO to check if an assignment had success.
  542.     <ProgramListing>
  543.     SELECT * INTO myrec FROM EMP WHERE empname = myname;
  544.     IF NOT FOUND THEN
  545.         RAISE EXCEPTION ''employee % not found'', myname;
  546.     END IF;
  547.     </ProgramListing>
  548.     If the selection returns multiple rows, only the first is moved
  549.     into the target fields. All others are silently discarded.
  550. </Para>
  551. </ListItem>
  552. </VarListEntry>
  553. <VarListEntry>
  554. <Term>
  555. Calling another function
  556. </Term>
  557. <ListItem>
  558. <Para>
  559.     All functions defined in a <ProductName>Prostgres</ProductName>
  560.     database return a value. Thus, the normal way to call a function
  561.     is to execute a SELECT query or doing an assignment (resulting
  562.     in a PL/pgSQL internal SELECT). But there are cases where someone
  563.     isn't interested int the functions result.
  564.     <ProgramListing>
  565.     PERFORM <Replaceable>query</Replaceable>
  566.     </ProgramListing>
  567.     executes a 'SELECT <Replaceable>query</Replaceable>' over the
  568.     SPI manager and discards the result. Identifiers like local
  569.     variables are still substituted into parameters.
  570. </Para>
  571. </ListItem>
  572. </VarListEntry>
  573. <VarListEntry>
  574. <Term>
  575. Returning from the function
  576. </Term>
  577. <ListItem>
  578. <Para>
  579.     <ProgramListing>
  580.     RETURN <Replaceable>expression</Replaceable>
  581.     </ProgramListing>
  582.     The function terminates and the value of <Replaceable>expression</Replaceable>
  583.     will be returned to the upper executor. The return value of a function
  584.     cannot be undefined. If control reaches the end of the toplevel block
  585.     of the function without hitting a RETURN statement, a runtime error
  586.     will occur.
  587. </Para>
  588. <Para>
  589.     The expressions result will be automatically casted into the
  590.     functions return type as described for assignments.
  591. </Para>
  592. </ListItem>
  593. </VarListEntry>
  594. <VarListEntry>
  595. <Term>
  596. Aborting and messages
  597. </Term>
  598. <ListItem>
  599. <Para>
  600.     As indicated in the above examples there is a RAISE statement that
  601.     can throw messages into the <ProductName>Postgres</ProductName>
  602.     elog mechanism.
  603.     <ProgramListing>
  604.     RAISE <replaceable class="parameter">level</replaceable> ''<replaceable class="parameter">format</replaceable>'' [, <replaceable class="parameter">identifier</replaceable> [...]];
  605.     </ProgramListing>
  606.     Inside the format, <quote>%</quote> is used as a placeholder for the
  607.     subsequent comma-separated identifiers. Possible levels are
  608.     DEBUG (silently suppressed in production running databases), NOTICE 
  609.     (written into the database log and forwarded to the client application)
  610.     and EXCEPTION (written into the database log and aborting the transaction).
  611. </Para>
  612. </ListItem>
  613. </VarListEntry>
  614. <VarListEntry>
  615. <Term>
  616. Conditionals
  617. </Term>
  618. <ListItem>
  619. <Para>
  620.     <ProgramListing>
  621.     IF <Replaceable>expression</Replaceable> THEN
  622.         <replaceable>statements</replaceable>
  623.     [ELSE
  624.         <replaceable>statements</replaceable>]
  625.     END IF;
  626.     </ProgramListing>
  627.     The <Replaceable>expression</Replaceable> must return a value that
  628.     at least can be casted into a boolean type.
  629. </Para>
  630. </ListItem>
  631. </VarListEntry>
  632. <VarListEntry>
  633. <Term>
  634. Loops
  635. </Term>
  636. <ListItem>
  637. <Para>
  638.     There are multiple types of loops.
  639.     <ProgramListing>
  640.     [&lt;&lt;label&gt;&gt;]
  641.     LOOP
  642.         <replaceable>statements</replaceable>
  643.     END LOOP;
  644.     </ProgramListing>
  645.     An unconditional loop that must be terminated explicitly
  646.     by an EXIT statement. The optional label can be used by
  647.     EXIT statements of nested loops to specify which level of
  648.     nesting should be terminated.
  649.     <ProgramListing>
  650.     [&lt;&lt;label&gt;&gt;]
  651.     WHILE <Replaceable>expression</Replaceable> LOOP
  652.         <replaceable>statements</replaceable>
  653.     END LOOP;
  654.     </ProgramListing>
  655.     A conditional loop that is executed as long as the evaluation
  656.     of <Replaceable>expression</Replaceable> is true.
  657.     <ProgramListing>
  658.     [&lt;&lt;label&gt;&gt;]
  659.     FOR <Replaceable>name</Replaceable> IN [ REVERSE ] <Replaceable>expression</Replaceable> .. <Replaceable>expression</Replaceable> LOOP
  660.         <replaceable>statements</replaceable>
  661.     END LOOP;
  662.     </ProgramListing>
  663.     A loop that iterates over a range of integer values. The variable
  664.     <Replaceable>name</Replaceable> is automatically created as type
  665.     integer and exists only inside the loop. The two expressions giving
  666.     the lower and upper bound of the range are evaluated only when entering
  667.     the loop. The iteration step is always 1.
  668.     <ProgramListing>
  669.     [&lt;&lt;label&gt;&gt;]
  670.     FOR <Replaceable>record | row</Replaceable> IN <Replaceable>select_clause</Replaceable> LOOP
  671.         <replaceable>statements</replaceable>
  672.     END LOOP;
  673.     </ProgramListing>
  674.     The record or row is assigned all the rows resulting from the select
  675.     clause and the statements executed for each. If the loop is terminated
  676.     with an EXIT statement, the last assigned row is still accessible 
  677.     after the loop.
  678.     <ProgramListing>
  679.     EXIT [ <Replaceable>label</Replaceable> ] [ WHEN <Replaceable>expression</Replaceable> ];
  680.     </ProgramListing>
  681.     If no <Replaceable>label</Replaceable> given,
  682.  the innermost loop is terminated and the
  683.     statement following END LOOP is executed next.
  684.  If <Replaceable>label</Replaceable> is given, it
  685.     must be the label of the current or an upper level of nested loop
  686.     blocks. Then the named loop or block is terminated and control
  687.     continues with the statement after the loops/blocks corresponding
  688.     END.
  689. </Para>
  690. </ListItem>
  691. </VarListEntry>
  692. </VariableList>
  693. </Sect3>
  694. <!-- **** PL/pgSQL trigger procedures **** -->
  695. <Sect3>
  696. <Title>Trigger Procedures</Title>
  697. <Para>
  698.     PL/pgSQL can be used to define trigger procedures. They are created
  699.     with the usual CREATE FUNCTION command as a function with no
  700.     arguments and a return type of OPAQUE.
  701. </Para>
  702. <Para>
  703.     There are some <ProductName>Postgres</ProductName> specific details
  704.     in functions used as trigger procedures.
  705. </Para>
  706. <Para>
  707.     First they have some special variables created automatically in the 
  708.     toplevel blocks declaration section. They are
  709. </Para>
  710. <VariableList>
  711. <VarListEntry>
  712. <Term>
  713.     NEW
  714. </Term>
  715. <ListItem>
  716. <Para>
  717.     Datatype RECORD; variable holding the new database row on INSERT/UPDATE
  718.     operations on ROW level triggers.
  719. </Para>
  720. </ListItem>
  721. </VarListEntry>
  722. <VarListEntry>
  723. <Term>
  724.     OLD
  725. </Term>
  726. <ListItem>
  727. <Para>
  728.     Datatype RECORD; variable holding the old database row on UPDATE/DELETE
  729.     operations on ROW level triggers.
  730. </Para>
  731. </ListItem>
  732. </VarListEntry>
  733. <VarListEntry>
  734. <Term>
  735.     TG_NAME
  736. </Term>
  737. <ListItem>
  738. <Para>
  739.     Datatype name; variable that contains the name of the trigger actually
  740.     fired.
  741. </Para>
  742. </ListItem>
  743. </VarListEntry>
  744. <VarListEntry>
  745. <Term>
  746.     TG_WHEN
  747. </Term>
  748. <ListItem>
  749. <Para>
  750.     Datatype text; a string of either 'BEFORE' or 'AFTER' depending on the
  751.     triggers definition.
  752. </Para>
  753. </ListItem>
  754. </VarListEntry>
  755. <VarListEntry>
  756. <Term>
  757.     TG_LEVEL
  758. </Term>
  759. <ListItem>
  760. <Para>
  761.     Datatype text; a string of either 'ROW' or 'STATEMENT' depending on the
  762.     triggers definition.
  763. </Para>
  764. </ListItem>
  765. </VarListEntry>
  766. <VarListEntry>
  767. <Term>
  768.     TG_OP
  769. </Term>
  770. <ListItem>
  771. <Para>
  772.     Datatype text; a string of 'INSERT', 'UPDATE' or 'DELETE' telling
  773.     for which operation the trigger is actually fired.
  774. </Para>
  775. </ListItem>
  776. </VarListEntry>
  777. <VarListEntry>
  778. <Term>
  779.     TG_RELID
  780. </Term>
  781. <ListItem>
  782. <Para>
  783.     Datatype oid; the object ID of the table that caused the
  784.     trigger invocation.
  785. </Para>
  786. </ListItem>
  787. </VarListEntry>
  788. <VarListEntry>
  789. <Term>
  790.     TG_RELNAME
  791. </Term>
  792. <ListItem>
  793. <Para>
  794.     Datatype name; the name of the table that caused the trigger
  795.     invocation.
  796. </Para>
  797. </ListItem>
  798. </VarListEntry>
  799. <VarListEntry>
  800. <Term>
  801.     TG_NARGS
  802. </Term>
  803. <ListItem>
  804. <Para>
  805.     Datatype integer; the number of arguments given to the trigger
  806.     procedure in the CREATE TRIGGER statement.
  807. </Para>
  808. </ListItem>
  809. </VarListEntry>
  810. <VarListEntry>
  811. <Term>
  812.     TG_ARGV[]
  813. </Term>
  814. <ListItem>
  815. <Para>
  816.     Datatype array of text; the arguments from the CREATE TRIGGER statement.
  817.     The index counts from 0 and can be given as an expression. Invalid
  818.     indices (&lt; 0 or &gt;= tg_nargs) result in a NULL value.
  819. </Para>
  820. </ListItem>
  821. </VarListEntry>
  822. </VariableList>
  823. <Para>
  824.     Second they must return either NULL or a record/row containing
  825.     exactly the structure of the table the trigger was fired for.
  826.     Triggers fired AFTER might always return a NULL value with no
  827.     effect. Triggers fired BEFORE signal the trigger manager
  828.     to skip the operation for this actual row when returning NULL.
  829.     Otherwise, the returned record/row replaces the inserted/updated
  830.     row in the operation. It is possible to replace single values directly
  831.     in NEW and return that or to build a complete new record/row to
  832.     return.
  833. </Para>
  834. </Sect3>
  835. <!-- **** PL/pgSQL exceptions **** -->
  836. <Sect3>
  837. <Title>Exceptions</Title>
  838. <Para>
  839.     <ProductName>Postgres</ProductName> does not have a very smart
  840.     exception handling model. Whenever the parser, planner/optimizer
  841.     or executor decide that a statement cannot be processed any longer,
  842.     the whole transaction gets aborted and the system jumps back
  843.     into the mainloop to get the next query from the client application.
  844. </Para>
  845. <Para>
  846.     It is possible to hook into the error mechanism to notice that this
  847.     happens. But currently it's impossible to tell what really
  848.     caused the abort (input/output conversion error, floating point
  849.     error, parse error). And it is possible that the database backend
  850.     is in an inconsistent state at this point so returning to the upper
  851.     executor or issuing more commands might corrupt the whole database.
  852.     And even if, at this point the information, that the transaction
  853.     is aborted, is already sent to the client application, so resuming
  854.     operation does not make any sense.
  855. </Para>
  856. <Para>
  857.     Thus, the only thing PL/pgSQL currently does when it encounters
  858.     an abort during execution of a function or trigger
  859.     procedure is to write some additional DEBUG level log messages
  860.     telling in which function and where (line number and type of
  861.     statement) this happened.
  862. </Para>
  863. </Sect3>
  864. </Sect2>
  865. <!-- **** PL/pgSQL Examples **** -->
  866. <Sect2>
  867. <Title>Examples</Title>
  868. <Para>
  869. Here are only a few functions to demonstrate how easy PL/pgSQL
  870. functions can be written. For more complex examples the programmer
  871. might look at the regression test for PL/pgSQL.
  872. </Para>
  873. <Para>
  874. One painful detail of writing functions in PL/pgSQL is the handling
  875. of single quotes. The functions source text on CREATE FUNCTION must
  876. be a literal string. Single quotes inside of literal strings must be
  877. either doubled or quoted with a backslash. We are still looking for
  878. an elegant alternative. In the meantime, doubling the single qoutes
  879. as in the examples below should be used. Any solution for this
  880. in future versions of <ProductName>Postgres</ProductName> will be
  881. upward compatible.
  882. </Para>
  883. <Sect3>
  884. <Title>Some Simple PL/pgSQL Functions</Title>
  885. <Para>
  886.     The following two PL/pgSQL functions are identical to their
  887.     counterparts from the C language function discussion.
  888.     <ProgramListing>
  889.     CREATE FUNCTION add_one (int4) RETURNS int4 AS '
  890.         BEGIN
  891.             RETURN $1 + 1;
  892.         END;
  893.     ' LANGUAGE 'plpgsql';
  894.     </ProgramListing>
  895.     <ProgramListing>
  896.     CREATE FUNCTION concat_text (text, text) RETURNS text AS '
  897.         BEGIN
  898.             RETURN $1 || $2;
  899.         END;
  900.     ' LANGUAGE 'plpgsql';
  901.     </ProgramListing>
  902. </Para>
  903. </Sect3>
  904. <Sect3>
  905. <Title>PL/pgSQL Function on Composite Type</Title>
  906. <Para>
  907.     Again it is the PL/pgSQL equivalent to the example from
  908.     The C functions.
  909.     <ProgramListing>
  910.     CREATE FUNCTION c_overpaid (EMP, int4) RETURNS bool AS '
  911.         DECLARE
  912.             emprec ALIAS FOR $1;
  913.             sallim ALIAS FOR $2;
  914.         BEGIN
  915.             IF emprec.salary ISNULL THEN
  916.                 RETURN ''f'';
  917.             END IF;
  918.             RETURN emprec.salary > sallim;
  919.         END;
  920.     ' LANGUAGE 'plpgsql';
  921.     </ProgramListing>
  922. </Para>
  923. </Sect3>
  924. <Sect3>
  925. <Title>PL/pgSQL Trigger Procedure</Title>
  926. <Para>
  927.     This trigger ensures, that any time a row is inserted or updated
  928.     in the table, the current username and time are stamped into the
  929.     row. And it ensures that an employees name is given and that the
  930.     salary is a positive value.
  931.     <ProgramListing>
  932.     CREATE TABLE emp (
  933.         empname text,
  934.         salary int4,
  935.         last_date datetime,
  936.         last_user name);
  937.     CREATE FUNCTION emp_stamp () RETURNS OPAQUE AS
  938.         BEGIN
  939.             -- Check that empname and salary are given
  940.             IF NEW.empname ISNULL THEN
  941.                 RAISE EXCEPTION ''empname cannot be NULL value'';
  942.             END IF;
  943.             IF NEW.salary ISNULL THEN
  944.                 RAISE EXCEPTION ''% cannot have NULL salary'', NEW.empname;
  945.             END IF;
  946.             -- Who works for us when she must pay for?
  947.             IF NEW.salary < 0 THEN
  948.                 RAISE EXCEPTION ''% cannot have a negative salary'', NEW.empname;
  949.             END IF;
  950.             -- Remember who changed the payroll when
  951.             NEW.last_date := ''now'';
  952.             NEW.last_user := getpgusername();
  953.             RETURN NEW;
  954.         END;
  955.     ' LANGUAGE 'plpgsql';
  956.     CREATE TRIGGER emp_stamp BEFORE INSERT OR UPDATE ON emp
  957.         FOR EACH ROW EXECUTE PROCEDURE emp_stamp();
  958.     </ProgramListing>
  959. </Para>
  960. </Sect3>
  961. </Sect2>
  962. </Sect1>
  963. <!-- **********
  964.      * The procedural language PL/Tcl
  965.      **********
  966. -->
  967. <Sect1>
  968. <Title>PL/Tcl</Title>
  969. <Para>
  970.     PL/Tcl is a loadable procedural language for the
  971.     <ProductName>Postgres</ProductName> database system
  972.     that enables the Tcl language to be used to create functions and
  973.     trigger-procedures.
  974. </Para>
  975. <Para>
  976.     This package was originally written by Jan Wieck.
  977. </Para>
  978. <!-- **** PL/Tcl overview **** -->
  979. <Sect2>
  980. <Title>Overview</Title>
  981. <Para>
  982.     PL/Tcl offers most of the capabilities a function
  983.     writer has in the C language, except for some restrictions.
  984. </Para>
  985. <Para>
  986.     The good restriction is, that everything is executed in a safe
  987.     Tcl-interpreter. In addition to the limited command set of safe Tcl, only
  988.     a few commands are available to access the database over SPI and to raise
  989.     messages via elog(). There is no way to access internals of the
  990.     database backend or gaining OS-level access under the permissions of the
  991.     <ProductName>Postgres</ProductName> user ID like in C.
  992.     Thus, any unprivileged database user may be
  993.     permitted to use this language.
  994. </Para>
  995. <Para>
  996.     The other, internal given, restriction is, that Tcl procedures cannot
  997.     be used to create input-/output-functions for new data types.
  998. </Para>
  999. <Para>
  1000.     The shared object for the PL/Tcl call handler is automatically built
  1001.     and installed in the <ProductName>Postgres</ProductName>
  1002.     library directory if the Tcl/Tk support is specified
  1003.     in the configuration step of the installation procedure.
  1004. </Para>
  1005. </Sect2>
  1006. <!-- **** PL/Tcl description **** -->
  1007. <Sect2>
  1008. <Title>Description</Title>
  1009. <Sect3>
  1010. <Title><ProductName>Postgres</ProductName> Functions and Tcl Procedure Names</Title>
  1011. <Para>
  1012.     In <ProductName>Postgres</ProductName>, one and the 
  1013.     same function name can be used for
  1014.     different functions as long as the number of arguments or their types
  1015.     differ. This would collide with Tcl procedure names. To offer the same
  1016.     flexibility in PL/Tcl, the internal Tcl procedure names contain the object
  1017.     ID of the procedures pg_proc row as part of their name. Thus, different
  1018.     argtype versions of the same <ProductName>Postgres</ProductName> 
  1019.     function are different for Tcl too.
  1020. </Para>
  1021. </Sect3>
  1022. <Sect3>
  1023. <Title>Defining Functions in PL/Tcl</Title>
  1024. <Para>
  1025.     To create a function in the PL/Tcl language, use the known syntax
  1026.     <ProgramListing>
  1027.     CREATE FUNCTION <Replaceable>funcname</Replaceable> (<Replaceable>argument-types</Replaceable>) RETURNS <Replaceable>returntype</Replaceable> AS '
  1028.         # PL/Tcl function body
  1029.     ' LANGUAGE 'pltcl';
  1030.     </ProgramListing>
  1031.     When calling this function in a query, the arguments are given as
  1032.     variables $1 ... $n to the Tcl procedure body. So a little max function
  1033.     returning the higher of two int4 values would be created as:
  1034.     <ProgramListing>
  1035.     CREATE FUNCTION tcl_max (int4, int4) RETURNS int4 AS '
  1036.         if {$1 > $2} {return $1}
  1037. return $2
  1038.     ' LANGUAGE 'pltcl';
  1039.     </ProgramListing>
  1040.     Composite type arguments are given to the procedure as Tcl arrays.
  1041.     The element names
  1042.     in the array are the attribute names of the composite
  1043.     type. If an attribute in the actual row
  1044.     has the NULL value, it will not appear in the array! Here is
  1045.     an example that defines the overpaid_2 function (as found in the
  1046.     older <ProductName>Postgres</ProductName> documentation) in PL/Tcl
  1047.     <ProgramListing>
  1048.     CREATE FUNCTION overpaid_2 (EMP) RETURNS bool AS '
  1049.         if {200000.0 < $1(salary)} {
  1050.             return "t"
  1051.         }
  1052.         if {$1(age) < 30 && 100000.0 < $1(salary)} {
  1053.             return "t"
  1054.         }
  1055.         return "f"
  1056.     ' LANGUAGE 'pltcl';
  1057.     </ProgramListing>
  1058. </Para>
  1059. </Sect3>
  1060. <Sect3>
  1061. <Title>Global Data in PL/Tcl</Title>
  1062. <Para>
  1063.     Sometimes (especially when using the SPI functions described later) it
  1064.     is useful to have some global status data that is held between two
  1065.     calls to a procedure. 
  1066.     All PL/Tcl procedures executed in one backend share the same
  1067.     safe Tcl interpreter.
  1068.     To help protecting PL/Tcl procedures from side effects,
  1069.     an array is made available to each procedure via the upvar
  1070.     command. The global name of this variable is the procedures internal
  1071.     name and the local name is GD.
  1072. </Para>
  1073. </Sect3>
  1074. <Sect3>
  1075. <Title>Trigger Procedures in PL/Tcl</Title>
  1076. <Para>
  1077.     Trigger procedures are defined in <ProductName>Postgres</ProductName>
  1078.     as functions without
  1079.     arguments and a return type of opaque. And so are they in the PL/Tcl
  1080.     language.
  1081. </Para>
  1082. <Para>
  1083.     The informations from the trigger manager are given to the procedure body
  1084.     in the following variables:
  1085. </Para>
  1086. <VariableList>
  1087. <VarListEntry>
  1088. <Term><Replaceable class="Parameter">
  1089. $TG_name
  1090. </Replaceable></Term>
  1091. <ListItem>
  1092. <Para>
  1093.     The name of the trigger from the CREATE TRIGGER statement.
  1094. </Para>
  1095. </ListItem>
  1096. </VarListEntry>
  1097. <VarListEntry>
  1098. <Term><Replaceable class="Parameter">
  1099. $TG_relid
  1100. </Replaceable></Term>
  1101. <ListItem>
  1102. <Para>
  1103.     The object ID of the table that caused the trigger procedure
  1104.     to be invoked.
  1105. </Para>
  1106. </ListItem>
  1107. </VarListEntry>
  1108. <VarListEntry>
  1109. <Term><Replaceable class="Parameter">
  1110. $TG_relatts
  1111. </Replaceable></Term>
  1112. <ListItem>
  1113. <Para>
  1114.     A Tcl list of the tables field names prefixed with an empty list element.
  1115.     So looking up an element name in the list with the lsearch Tcl command
  1116.     returns the same positive number starting from 1 as the fields are numbered
  1117.     in the pg_attribute system catalog.
  1118. </Para>
  1119. </ListItem>
  1120. </VarListEntry>
  1121. <VarListEntry>
  1122. <Term><Replaceable class="Parameter">
  1123. $TG_when
  1124. </Replaceable></Term>
  1125. <ListItem>
  1126. <Para>
  1127.     The string BEFORE or AFTER depending on the event of the trigger call.
  1128. </Para>
  1129. </ListItem>
  1130. </VarListEntry>
  1131. <VarListEntry>
  1132. <Term><Replaceable class="Parameter">
  1133. $TG_level
  1134. </Replaceable></Term>
  1135. <ListItem>
  1136. <Para>
  1137.     The string ROW or STATEMENT depending on the event of the trigger call.
  1138. </Para>
  1139. </ListItem>
  1140. </VarListEntry>
  1141. <VarListEntry>
  1142. <Term><Replaceable class="Parameter">
  1143. $TG_op
  1144. </Replaceable></Term>
  1145. <ListItem>
  1146. <Para>
  1147.     The string INSERT, UPDATE or DELETE depending on the event of the 
  1148.     trigger call.
  1149. </Para>
  1150. </ListItem>
  1151. </VarListEntry>
  1152. <VarListEntry>
  1153. <Term><Replaceable class="Parameter">
  1154. $NEW
  1155. </Replaceable></Term>
  1156. <ListItem>
  1157. <Para>
  1158.     An array containing the values of the new table row on INSERT/UPDATE
  1159.     actions, or empty on DELETE.
  1160. </Para>
  1161. </ListItem>
  1162. </VarListEntry>
  1163. <VarListEntry>
  1164. <Term><Replaceable class="Parameter">
  1165. $OLD
  1166. </Replaceable></Term>
  1167. <ListItem>
  1168. <Para>
  1169.     An array containing the values of the old table row on UPDATE/DELETE
  1170.     actions, or empty on INSERT.
  1171. </Para>
  1172. </ListItem>
  1173. </VarListEntry>
  1174. <VarListEntry>
  1175. <Term><Replaceable class="Parameter">
  1176. $GD
  1177. </Replaceable></Term>
  1178. <ListItem>
  1179. <Para>
  1180.     The global status data array as described above.
  1181. </Para>
  1182. </ListItem>
  1183. </VarListEntry>
  1184. <VarListEntry>
  1185. <Term><Replaceable class="Parameter">
  1186. $args
  1187. </Replaceable></Term>
  1188. <ListItem>
  1189. <Para>
  1190.     A Tcl list of the arguments to the procedure as given in the
  1191.     CREATE TRIGGER statement. The arguments are also accessible as $1 ... $n
  1192.     in the procedure body.
  1193. </Para>
  1194. </ListItem>
  1195. </VarListEntry>
  1196. </VariableList>
  1197. <Para>
  1198.     The return value from a trigger procedure is one of the strings OK or SKIP,
  1199.     or a list as returned by the 'array get' Tcl command. If the return value
  1200.     is OK, the normal operation (INSERT/UPDATE/DELETE) that fired this trigger
  1201.     will take place. Obviously, SKIP tells the trigger manager to silently
  1202.     suppress the operation. The list from 'array get' tells PL/Tcl
  1203.     to return a modified row to the trigger manager that will be inserted instead
  1204.     of the one given in $NEW (INSERT/UPDATE only). Needless to say that all
  1205.     this is only meaningful when the trigger is BEFORE and FOR EACH ROW.
  1206. </Para>
  1207. <Para>
  1208.     Here's a little example trigger procedure that forces an integer value
  1209.     in a table to keep track of the # of updates that are performed on the
  1210.     row. For new row's inserted, the value is initialized to 0 and then
  1211.     incremented on every update operation:
  1212.     <ProgramListing>
  1213.     CREATE FUNCTION trigfunc_modcount() RETURNS OPAQUE AS '
  1214.         switch $TG_op {
  1215.             INSERT {
  1216.                 set NEW($1) 0
  1217.             }
  1218.             UPDATE {
  1219.                 set NEW($1) $OLD($1)
  1220.                 incr NEW($1)
  1221.             }
  1222.             default {
  1223.                 return OK
  1224.             }
  1225.         }
  1226.         return [array get NEW]
  1227.     ' LANGUAGE 'pltcl';
  1228.     CREATE TABLE mytab (num int4, modcnt int4, desc text);
  1229.     CREATE TRIGGER trig_mytab_modcount BEFORE INSERT OR UPDATE ON mytab
  1230.         FOR EACH ROW EXECUTE PROCEDURE trigfunc_modcount('modcnt');
  1231.     </ProgramListing>
  1232. </Para>
  1233. </Sect3>
  1234. <Sect3>
  1235. <Title>Database Access from PL/Tcl</Title>
  1236. <Para>
  1237.     The following commands are available to access the database from
  1238.     the body of a PL/Tcl procedure:
  1239. </Para>
  1240. <VariableList>
  1241. <VarListEntry>
  1242. <Term>
  1243. elog <Replaceable>level</Replaceable> <Replaceable>msg</Replaceable>
  1244. </Term>
  1245. <ListItem>
  1246. <Para>
  1247.     Fire a log message. Possible levels are NOTICE, WARN, ERROR,
  1248.     FATAL, DEBUG and NOIND
  1249.     like for the elog() C function.
  1250. </Para>
  1251. </ListItem>
  1252. </VarListEntry>
  1253. <VarListEntry>
  1254. <Term>
  1255. quote <Replaceable>string</Replaceable>
  1256. </Term>
  1257. <ListItem>
  1258. <Para>
  1259.     Duplicates all occurences of single quote and backslash characters.
  1260.     It should be used when variables are used in the query string given
  1261.     to spi_exec or spi_prepare (not for the value list on spi_execp).
  1262.     Think about a query string like
  1263.     <ProgramListing>
  1264.     "SELECT '$val' AS ret"
  1265.     </ProgramListing>
  1266.     where the Tcl variable val actually contains "doesn't". This would result
  1267.     in the final query string
  1268.     <ProgramListing>
  1269.     "SELECT 'doesn't' AS ret"
  1270.     </ProgramListing>
  1271.     what would cause a parse error during spi_exec or spi_prepare.
  1272.     It should contain
  1273.     <ProgramListing>
  1274.     "SELECT 'doesn''t' AS ret"
  1275.     </ProgramListing>
  1276.     and has to be written as
  1277.     <ProgramListing>
  1278.     "SELECT '[ quote $val ]' AS ret"
  1279.     </ProgramListing>
  1280. </Para>
  1281. </ListItem>
  1282. </VarListEntry>
  1283. <VarListEntry>
  1284. <Term>
  1285. spi_exec ?-count <Replaceable>n</Replaceable>? ?-array <Replaceable>name</Replaceable>? <Replaceable>query</Replaceable> ?<Replaceable>loop-body</Replaceable>?
  1286. </Term>
  1287. <ListItem>
  1288. <Para>
  1289.     Call parser/planner/optimizer/executor for query.
  1290.     The optional -count value tells spi_exec the maximum number of rows
  1291.     to be processed by the query.
  1292. </Para>
  1293. <Para>
  1294.     If the query is
  1295.     a SELECT statement and the optional loop-body (a body of Tcl commands
  1296.     like in a foreach statement) is given, it is evaluated for each
  1297.     row selected and behaves like expected on continue/break. The values
  1298.     of selected fields are put into variables named as the column names. So a
  1299.     <ProgramListing>
  1300.     spi_exec "SELECT count(*) AS cnt FROM pg_proc"
  1301.     </ProgramListing>
  1302.     will set the variable $cnt to the number of rows in the pg_proc system
  1303.     catalog. If the option -array is given, the column values are stored
  1304.     in the associative array named 'name' indexed by the column name
  1305.     instead of individual variables.
  1306.     <ProgramListing>
  1307.     spi_exec -array C "SELECT * FROM pg_class" {
  1308.         elog DEBUG "have table $C(relname)"
  1309.     }
  1310.     </ProgramListing>
  1311.     will print a DEBUG log message for every row of pg_class. The return value
  1312.     of spi_exec is the number of rows affected by query as found in
  1313.     the global variable SPI_processed.
  1314. </Para>
  1315. </ListItem>
  1316. </VarListEntry>
  1317. <VarListEntry>
  1318. <Term>
  1319. spi_prepare <Replaceable>query</Replaceable> <Replaceable>typelist</Replaceable>
  1320. </Term>
  1321. <ListItem>
  1322. <Para>
  1323.     Prepares AND SAVES a query plan for later execution. It is a bit different
  1324.     from the C level SPI_prepare in that the plan is automatically copied to the
  1325.     toplevel memory context. Thus, there is currently no way of preparing a
  1326.     plan without saving it.
  1327. </Para>
  1328. <Para>
  1329.     If the query references arguments, the type names must be given as a Tcl
  1330.     list. The return value from spi_prepare is a query ID to be used in
  1331.     subsequent calls to spi_execp. See spi_execp for a sample.
  1332. </Para>
  1333. </ListItem>
  1334. </VarListEntry>
  1335. <VarListEntry>
  1336. <Term>
  1337. spi_exec ?-count <Replaceable>n</Replaceable>? ?-array <Replaceable>name</Replaceable>? ?-nulls <Replaceable>str</Replaceable>? <Replaceable>query</Replaceable> ?<Replaceable>valuelist</Replaceable>? ?<Replaceable>loop-body</Replaceable>?
  1338. </Term>
  1339. <ListItem>
  1340. <Para>
  1341.     Execute a prepared plan from spi_prepare with variable substitution.
  1342.     The optional -count value tells spi_execp the maximum number of rows
  1343.     to be processed by the query.
  1344. </Para>
  1345. <Para>
  1346.     The optional value for -nulls is a string of spaces and 'n' characters
  1347.     telling spi_execp which of the values are NULL's. If given, it must
  1348.     have exactly the length of the number of values.
  1349. </Para>
  1350. <Para>
  1351.     The queryid is the ID returned by the spi_prepare call.
  1352. </Para>
  1353. <Para>
  1354.     If there was a typelist given to spi_prepare, a Tcl list of values of
  1355.     exactly the same length must be given to spi_execp after the query. If
  1356.     the type list on spi_prepare was empty, this argument must be omitted.
  1357. </Para>
  1358. <Para>
  1359.     If the query is a SELECT statement, the same as described for spi_exec
  1360.     happens for the loop-body and the variables for the fields selected.
  1361. </Para>
  1362. <Para>
  1363.     Here's an example for a PL/Tcl function using a prepared plan:
  1364.     <ProgramListing>
  1365.     CREATE FUNCTION t1_count(int4, int4) RETURNS int4 AS '
  1366.         if {![ info exists GD(plan) ]} {
  1367.             # prepare the saved plan on the first call
  1368.             set GD(plan) [ spi_prepare \
  1369.                     "SELECT count(*) AS cnt FROM t1 WHERE num &gt;= \$1 AND num &lt;= \$2" \
  1370.                     int4 ]
  1371.         }
  1372.         spi_execp -count 1 $GD(plan) [ list $1 $2 ]
  1373.         return $cnt
  1374.     ' LANGUAGE 'pltcl';
  1375.     </ProgramListing>
  1376.     Note that each backslash that Tcl should see must be doubled in
  1377.     the query creating the function, since the main parser processes
  1378.     backslashes too on CREATE FUNCTION.
  1379.     Inside the query string given to spi_prepare should
  1380.     really be dollar signs to mark the parameter positions and to not let
  1381.     $1 be substituted by the value given in the first function call.
  1382. </Para>
  1383. </ListItem>
  1384. </VarListEntry>
  1385. <VarListEntry>
  1386. <Term>
  1387. Modules and the unknown command
  1388. </Term>
  1389. <ListItem>
  1390. <Para>
  1391.     PL/Tcl has a special support for things often used. It recognizes two
  1392.     magic tables, pltcl_modules and pltcl_modfuncs.
  1393.     If these exist, the module 'unknown' is loaded into the interpreter
  1394.     right after creation. Whenever an unknown Tcl procedure is called,
  1395.     the unknown proc is asked to check if the procedure is defined in one
  1396.     of the modules. If this is true, the module is loaded on demand.
  1397.     To enable this behavior, the PL/Tcl call handler must be compiled
  1398.     with -DPLTCL_UNKNOWN_SUPPORT set.
  1399. </Para>
  1400. <Para>
  1401.     There are support scripts to maintain these tables in the modules
  1402.     subdirectory of the PL/Tcl source including the source for the
  1403.     unknown module that must get installed initially.
  1404. </Para>
  1405. </ListItem>
  1406. </VarListEntry>
  1407. </VariableList>
  1408. </Sect3>
  1409. </Sect2>
  1410. </Sect1>
  1411. </Chapter>