Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e863951

Browse files
committed
Remove mention of DBD::PgSPI, which is unmaintained and generally unnecessary.
1 parent 6678236 commit e863951

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

doc/src/sgml/plperl.sgml

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/plperl.sgml,v 2.68 2008/03/28 00:21:55 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/plperl.sgml,v 2.69 2008/04/10 15:16:46 alvherre Exp $ -->
22

33
<chapter id="plperl">
44
<title>PL/Perl - Perl Procedural Language</title>
@@ -309,20 +309,7 @@ BEGIN { strict->import(); }
309309

310310
<para>
311311
Access to the database itself from your Perl function can be done
312-
via the function <function>spi_exec_query</function> described
313-
below, or via an experimental module
314-
<ulink url="http://www.cpan.org/modules/by-module/DBD/APILOS/">
315-
<literal>DBD::PgSPI</literal></ulink>
316-
(also available at <ulink url="http://www.cpan.org/SITES.html">
317-
<acronym>CPAN mirror sites</></ulink>). This module makes available a
318-
<acronym>DBI</>-compliant database-handle named
319-
<varname>$pg_dbh</varname> that can be used to perform queries with
320-
normal <acronym>DBI</>
321-
syntax.<indexterm><primary>DBI</></indexterm>
322-
</para>
323-
324-
<para>
325-
PL/Perl provides additional Perl commands:
312+
via the following functions:
326313

327314
<variablelist>
328315
<varlistentry>
@@ -412,6 +399,7 @@ $$ LANGUAGE plperl;
412399
SELECT * FROM test_munge();
413400
</programlisting>
414401
</para>
402+
415403
<para>
416404
<literal>spi_query</literal> and <literal>spi_fetchrow</literal>
417405
work together as a pair for row sets which might be large, or for cases

0 commit comments

Comments
 (0)