File: spi-spi-connect.html

package info (click to toggle)
pgadmin3 1.4.3-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 29,796 kB
  • ctags: 10,758
  • sloc: cpp: 55,356; sh: 6,164; ansic: 1,520; makefile: 576; sql: 482; xml: 100; perl: 18
file content (57 lines) | stat: -rw-r--r-- 2,644 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>SPI_connect</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="spi.html#spi-interface" title="40.1.Interface Functions">
<link rel="prev" href="spi.html" title="Chapter40.Server Programming Interface">
<link rel="next" href="spi-spi-finish.html" title="SPI_finish">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en">
<a name="spi-spi-connect"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>SPI_connect &#8212; connect a procedure to the SPI manager</p>
</div>
<a name="id733984"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">int SPI_connect(void)</pre>
</div>
<div class="refsect1" lang="en">
<a name="id733997"></a><h2>Description</h2>
<p>   <code class="function">SPI_connect</code> opens a connection from a
   procedure invocation to the SPI manager.  You must call this
   function if you want to execute commands through SPI.  Some utility
   SPI functions may be called from unconnected procedures.
  </p>
<p>   If your procedure is already connected,
   <code class="function">SPI_connect</code> will return the error code
   <span class="returnvalue">SPI_ERROR_CONNECT</span>.  This could happen if
   a procedure that has called <code class="function">SPI_connect</code>
   directly calls another procedure that calls
   <code class="function">SPI_connect</code>.  While recursive calls to the
   <acronym class="acronym">SPI</acronym> manager are permitted when an SQL command
   called through SPI invokes another function that uses
   <acronym class="acronym">SPI</acronym>, directly nested calls to
   <code class="function">SPI_connect</code> and
   <code class="function">SPI_finish</code> are forbidden.
   (But see <code class="function">SPI_push</code> and <code class="function">SPI_pop</code>.)
  </p>
</div>
<div class="refsect1" lang="en">
<a name="id734080"></a><h2>Return Value</h2>
<div class="variablelist"><dl>
<dt><span class="term"><code class="symbol">SPI_OK_CONNECT</code></span></dt>
<dd><p>      on success
     </p></dd>
<dt><span class="term"><code class="symbol">SPI_ERROR_CONNECT</code></span></dt>
<dd><p>      on error
     </p></dd>
</dl></div>
</div>
</div></body>
</html>