OSDN Git Service

FIRST REPOSITORY
[eos/hostdependOTHERS.git] / I386LINUX / util / I386LINUX / man / man7 / load.7
1 .\\" auto-generated by docbook2man-spec $Revision: 1.25 $
2 .TH "LOAD" "7" "2003-11-02" "SQL - Language Statements" "SQL Commands"
3 .SH NAME
4 LOAD \- load or reload a shared library file
5
6 .SH SYNOPSIS
7 .sp
8 .nf
9 LOAD '\fIfilename\fR'
10 .sp
11 .fi
12 .SH "DESCRIPTION"
13 .PP
14 This command loads a shared library file into the PostgreSQL
15 server's address space. If the file had been loaded previously,
16 it is first unloaded. This command is primarily useful to unload
17 and reload a shared library file that has been changed since the
18 server first loaded it. To make use of the shared library,
19 function(s) in it need to be declared using the CREATE FUNCTION [\fBcreate_function\fR(7)]
20 command.
21 .PP
22 The file name is specified in the same way as for shared library
23 names in CREATE FUNCTION [\fBcreate_function\fR(7)]; in particular, one
24 may rely on a search path and automatic addition of the system's standard
25 shared library file name extension. See the section called ``User-Defined Functions'' in the documentation for
26 more information on this topic.
27 .SH "COMPATIBILITY"
28 .PP
29 \fBLOAD\fR is a PostgreSQL
30 extension.
31 .SH "SEE ALSO"
32 .PP
33 CREATE FUNCTION [\fBcreate_function\fR(7)]