postgresql/doc/src/sgml/ref/load.sgml

84 lines
2.2 KiB
Plaintext
Raw Normal View History

<!--
2005-01-04 01:39:53 +01:00
$PostgreSQL: pgsql/doc/src/sgml/ref/load.sgml,v 1.21 2005/01/04 00:39:53 tgl Exp $
-->
<refentry id="SQL-LOAD">
<refmeta>
<refentrytitle id="SQL-LOAD-TITLE">LOAD</refentrytitle>
<refmiscinfo>SQL - Language Statements</refmiscinfo>
</refmeta>
<refnamediv>
<refname>LOAD</refname>
<refpurpose>load or reload a shared library file</refpurpose>
</refnamediv>
2003-08-31 19:32:24 +02:00
<indexterm zone="sql-load">
<primary>LOAD</primary>
</indexterm>
<refsynopsisdiv>
<synopsis>
LOAD '<replaceable class="PARAMETER">filename</replaceable>'
</synopsis>
</refsynopsisdiv>
<refsect1 id="sql-load-description">
<title>Description</title>
<para>
2003-04-27 01:56:51 +02:00
This command loads a shared library file into the <productname>PostgreSQL</>
server's address space. If the file had been loaded previously,
2002-11-15 04:11:18 +01:00
it is first unloaded. This command is primarily useful to unload
and reload a shared library file that has been changed since the
2003-04-27 01:56:51 +02:00
server first loaded it. To make use of the shared library,
2002-11-15 04:11:18 +01:00
function(s) in it need to be declared using the <xref
linkend="sql-createfunction" endterm="sql-createfunction-title">
command.
</para>
<para>
2002-01-20 23:19:57 +01:00
The file name is specified in the same way as for shared library
names in <xref linkend="sql-createfunction" endterm="sql-createfunction-title">; in particular, one
may rely on a search path and automatic addition of the system's standard
2005-01-04 01:39:53 +01:00
shared library file name extension. See <xref linkend="xfunc-c"> for
more information on this topic.
</para>
</refsect1>
<refsect1 id="sql-load-compat">
<title>Compatibility</title>
<para>
<command>LOAD</command> is a <productname>PostgreSQL</productname>
extension.
</para>
</refsect1>
<refsect1>
<title>See Also</title>
<para>
<xref linkend="sql-createfunction" endterm="sql-createfunction-title">
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:nil
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"../reference.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
-->