目次
PL/Perl is a loadable procedural language that enables you to write <productname>PostgreSQL</productname> functions and procedures in the <ulink url="https://www.perl.org">Perl programming language</ulink>. PL/PerlはPerlプログラミング言語を使用してPostgreSQL関数とプロシージャを作成することができる、ロード可能な手続き言語です。
The main advantage to using PL/Perl is that this allows use, within stored functions and procedures, of the manyfold <quote>string munging</quote> operators and functions available for Perl. Parsing complex strings might be easier using Perl than it is with the string functions and control structures provided in PL/pgSQL. PL/Perlを使用する主たる利点は、ストアド関数やプロシージャの中で、Perlで使用可能なさまざまな「文字列操作」や関数を使用できるという点です。 複雑な文字列解析は、PL/pgSQLで提供される文字列関数や制御構造体を使用するよりPerlを使用する方が簡単に行うことができます。
To install PL/Perl in a particular database, use
<literal>CREATE EXTENSION plperl</literal>.
PL/Perlを特定のデータベースにインストールするには、CREATE EXTENSION plperl
を使用してください。
If a language is installed into <literal>template1</literal>, all subsequently
created databases will have the language installed automatically.
言語をtemplate1
にインストールすると、その後に作成されるデータベース全てにその言語は自動的にインストールされます。
Users of source packages must specially enable the build of PL/Perl during the installation process. (Refer to <xref linkend="installation"/> for more information.) Users of binary packages might find PL/Perl in a separate subpackage. ソースパッケージを使用するユーザは、インストール作業時にPL/Perlを特別に使用可能にする必要があります。 (詳細については、第17章を参照してください。) バイナリパッケージを使用する場合は、別個のサブパッケージにPL/Perlが入っている可能性があります。