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
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>LOAD</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="sql-commands.html" title="SQL Commands">
<link rel="prev" href="sql-listen.html" title="LISTEN">
<link rel="next" href="sql-lock.html" title="LOCK">
<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="sql-load"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>LOAD — load or reload a shared library file</p>
</div>
<a name="id777875"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">LOAD '<em class="replaceable"><code>filename</code></em>'</pre>
</div>
<div class="refsect1" lang="en">
<a name="sql-load-description"></a><h2>Description</h2>
<p> This command loads a shared library file into the <span class="productname">PostgreSQL</span>
server's address space. If the file had been loaded previously,
it is first unloaded. This command is primarily useful to unload
and reload a shared library file that has been changed since the
server first loaded it. To make use of the shared library,
function(s) in it need to be declared using the <a href="sql-createfunction.html">CREATE FUNCTION</a>
command.
</p>
<p> The file name is specified in the same way as for shared library
names in <a href="sql-createfunction.html">CREATE FUNCTION</a>; in particular, one
may rely on a search path and automatic addition of the system's standard
shared library file name extension. See <a href="xfunc-c.html" title="32.9.C-Language Functions">Section32.9, “C-Language Functions”</a> for
more information on this topic.
</p>
</div>
<div class="refsect1" lang="en">
<a name="sql-load-compat"></a><h2>Compatibility</h2>
<p> <code class="command">LOAD</code> is a <span class="productname">PostgreSQL</span>
extension.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id777983"></a><h2>See Also</h2>
<p> <a href="sql-createfunction.html">CREATE FUNCTION</a>
</p>
</div>
</div></body>
</html>
|