File: spi-spi-cursor-close.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 (43 lines) | stat: -rw-r--r-- 1,874 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>SPI_cursor_close</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-spi-cursor-move.html" title="SPI_cursor_move">
<link rel="next" href="spi-spi-saveplan.html" title="SPI_saveplan">
<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-cursor-close"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>SPI_cursor_close &#8212; close a cursor</p>
</div>
<a name="id737239"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">void SPI_cursor_close(Portal <em class="parameter"><code>portal</code></em>)</pre>
</div>
<div class="refsect1" lang="en">
<a name="id737258"></a><h2>Description</h2>
<p>   <code class="function">SPI_cursor_close</code> closes a previously created
   cursor and releases its portal storage.
  </p>
<p>   All open cursors are closed automatically at the end of a
   transaction.  <code class="function">SPI_cursor_close</code> need only be
   invoked if it is desirable to release resources sooner.
  </p>
</div>
<div class="refsect1" lang="en">
<a name="id737285"></a><h2>Arguments</h2>
<div class="variablelist"><dl>
<dt><span class="term"><code class="literal">Portal <em class="parameter"><code>portal</code></em></code></span></dt>
<dd><p>      portal containing the cursor
     </p></dd>
</dl></div>
</div>
</div></body>
</html>