Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > main-testing > by-pkgid > bab02a23fa9f3df8d66a9a3231b50245 > files > 686

postgresql8.3-docs-8.3.6-2mdv2008.1.x86_64.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>SPI_prepare</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 8.3.6 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="Interface Functions"
HREF="spi-interface.html"><LINK
REL="PREVIOUS"
TITLE="SPI_exec"
HREF="spi-spi-exec.html"><LINK
REL="NEXT"
TITLE="SPI_prepare_cursor"
HREF="spi-spi-prepare-cursor.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2009-02-03T04:34:16"></HEAD
><BODY
CLASS="REFENTRY"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="5"
ALIGN="center"
VALIGN="bottom"
>PostgreSQL 8.3.6 Documentation</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="spi-spi-exec.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="spi-spi-exec.html"
>Fast Backward</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="spi-spi-prepare-cursor.html"
>Fast Forward</A
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="spi-spi-prepare-cursor.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="SPI-SPI-PREPARE"
></A
>SPI_prepare</H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN46389"
></A
><H2
>Name</H2
>SPI_prepare&nbsp;--&nbsp;prepare a plan for a command, without executing it yet</DIV
><A
NAME="AEN46392"
></A
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN46394"
></A
><H2
>Synopsis</H2
><PRE
CLASS="SYNOPSIS"
>SPIPlanPtr SPI_prepare(const char * <TT
CLASS="PARAMETER"
>command</TT
>, int <TT
CLASS="PARAMETER"
>nargs</TT
>, Oid * <TT
CLASS="PARAMETER"
>argtypes</TT
>)</PRE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN46399"
></A
><H2
>Description</H2
><P
>   <CODE
CLASS="FUNCTION"
>SPI_prepare</CODE
> creates and returns an execution
   plan for the specified command but doesn't execute the command.
   This function should only be called from a connected procedure.
  </P
><P
>   When the same or a similar command is to be executed repeatedly, it
   might be advantageous to perform the planning only once.
   <CODE
CLASS="FUNCTION"
>SPI_prepare</CODE
> converts a command string into an
   execution plan that can be executed repeatedly using
   <CODE
CLASS="FUNCTION"
>SPI_execute_plan</CODE
>.
  </P
><P
>   A prepared command can be generalized by writing parameters
   (<TT
CLASS="LITERAL"
>$1</TT
>, <TT
CLASS="LITERAL"
>$2</TT
>, etc.) in place of what would be
   constants in a normal command.  The actual values of the parameters
   are then specified when <CODE
CLASS="FUNCTION"
>SPI_execute_plan</CODE
> is called.
   This allows the prepared command to be used over a wider range of
   situations than would be possible without parameters.
  </P
><P
>   The plan returned by <CODE
CLASS="FUNCTION"
>SPI_prepare</CODE
> can be used
   only in the current invocation of the procedure, since
   <CODE
CLASS="FUNCTION"
>SPI_finish</CODE
> frees memory allocated for a plan.
   But a plan can be saved for longer using the function
   <CODE
CLASS="FUNCTION"
>SPI_saveplan</CODE
>.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN46414"
></A
><H2
>Arguments</H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>const char * <TT
CLASS="PARAMETER"
>command</TT
></TT
></DT
><DD
><P
>      command string
     </P
></DD
><DT
><TT
CLASS="LITERAL"
>int <TT
CLASS="PARAMETER"
>nargs</TT
></TT
></DT
><DD
><P
>      number of input parameters (<TT
CLASS="LITERAL"
>$1</TT
>, <TT
CLASS="LITERAL"
>$2</TT
>, etc.)
     </P
></DD
><DT
><TT
CLASS="LITERAL"
>Oid * <TT
CLASS="PARAMETER"
>argtypes</TT
></TT
></DT
><DD
><P
>      pointer to an array containing the <ACRONYM
CLASS="ACRONYM"
>OID</ACRONYM
>s of
      the data types of the parameters
     </P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN46438"
></A
><H2
>Return Value</H2
><P
>   <CODE
CLASS="FUNCTION"
>SPI_prepare</CODE
> returns a non-null pointer to an
   execution plan.  On error, <TT
CLASS="SYMBOL"
>NULL</TT
> will be returned,
   and <TT
CLASS="VARNAME"
>SPI_result</TT
> will be set to one of the same
   error codes used by <CODE
CLASS="FUNCTION"
>SPI_execute</CODE
>, except that
   it is set to <TT
CLASS="SYMBOL"
>SPI_ERROR_ARGUMENT</TT
> if
   <TT
CLASS="PARAMETER"
>command</TT
> is <TT
CLASS="SYMBOL"
>NULL</TT
>, or if
   <TT
CLASS="PARAMETER"
>nargs</TT
> is less than 0, or if <TT
CLASS="PARAMETER"
>nargs</TT
> is
   greater than 0 and <TT
CLASS="PARAMETER"
>argtypes</TT
> is <TT
CLASS="SYMBOL"
>NULL</TT
>.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN46452"
></A
><H2
>Notes</H2
><P
>   <TT
CLASS="TYPE"
>SPIPlanPtr</TT
> is declared as a pointer to an opaque struct type in
   <TT
CLASS="FILENAME"
>spi.h</TT
>.  It is unwise to try to access its contents
   directly, as that makes your code much more likely to break in
   future revisions of <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>.
  </P
><P
>   There is a disadvantage to using parameters: since the planner does
   not know the values that will be supplied for the parameters, it
   might make worse planning choices than it would make for a normal
   command with all constants visible.
  </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="spi-spi-exec.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="spi-spi-prepare-cursor.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>SPI_exec</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="spi-interface.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>SPI_prepare_cursor</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>