~ubuntu-branches/debian/squeeze/pgadmin3/squeeze

« back to all changes in this revision

Viewing changes to docs/en_US/pg/spi-spi-getnspname.html

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Porcheron
  • Date: 2008-02-07 00:56:22 UTC
  • mto: (2.1.6 hardy) (6.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20080207005622-c2ail8p4d0sk3dnw
Tags: upstream-1.8.2
Import upstream version 1.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html>
2
 
<head>
3
 
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
4
 
<title>SPI_getnspname</title>
5
 
<link rel="stylesheet" href="stylesheet.css" type="text/css">
6
 
<link rev="made" href="pgsql-docs@postgresql.org">
7
 
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
8
 
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
9
 
<link rel="up" href="spi-interface-support.html" title="40.2.�Interface Support Functions">
10
 
<link rel="prev" href="spi-spi-getrelname.html" title="SPI_getrelname">
11
 
<link rel="next" href="spi-memory.html" title="40.3.�Memory Management">
12
 
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
13
 
</head>
14
 
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en">
15
 
<a name="spi-spi-getnspname"></a><div class="titlepage"></div>
16
 
<div class="refnamediv">
17
 
<h2>Name</h2>
18
 
<p>SPI_getnspname &#8212; return the namespace of the specified relation</p>
19
 
</div>
20
 
<a name="id738480"></a><div class="refsynopsisdiv">
21
 
<h2>Synopsis</h2>
22
 
<pre class="synopsis">char * SPI_getnspname(Relation <em class="parameter"><code>rel</code></em>)</pre>
23
 
</div>
24
 
<div class="refsect1" lang="en">
25
 
<a name="id738499"></a><h2>Description</h2>
26
 
<p>   <code class="function">SPI_getnspname</code> returns a copy of the name of
27
 
   the namespace that the specified <code class="structname">Relation</code>
28
 
   belongs to. This is equivalent to the relation's schema. You should
29
 
   <code class="function">pfree</code> the return value of this function when
30
 
   you are finished with it.
31
 
  </p>
32
 
</div>
33
 
<div class="refsect1" lang="en">
34
 
<a name="id738526"></a><h2>Arguments</h2>
35
 
<div class="variablelist"><dl>
36
 
<dt><span class="term"><code class="literal">Relation <em class="parameter"><code>rel</code></em></code></span></dt>
37
 
<dd><p>      input relation
38
 
     </p></dd>
39
 
</dl></div>
40
 
</div>
41
 
<div class="refsect1" lang="en">
42
 
<a name="id738548"></a><h2>Return Value</h2>
43
 
<p>   The name of the specified relation's namespace.
44
 
  </p>
45
 
</div>
46
 
</div></body>
47
 
</html>