From: Alvaro Herrera Date: Thu, 10 Apr 2008 15:16:46 +0000 (+0000) Subject: Remove mention of DBD::PgSPI, which is unmaintained and generally unnecessary. X-Git-Tag: recoveryinfrav9~1235 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=39020def116d8668cb15f6b31bdcb07713555afc;p=users%2Fsimon%2Fpostgres.git Remove mention of DBD::PgSPI, which is unmaintained and generally unnecessary. --- diff --git a/doc/src/sgml/plperl.sgml b/doc/src/sgml/plperl.sgml index 9846a49086..2f2e53bbf1 100644 --- a/doc/src/sgml/plperl.sgml +++ b/doc/src/sgml/plperl.sgml @@ -309,20 +309,7 @@ BEGIN { strict->import(); } Access to the database itself from your Perl function can be done - via the function spi_exec_query described - below, or via an experimental module - - DBD::PgSPI - (also available at - CPAN mirror sites). This module makes available a - DBI-compliant database-handle named - $pg_dbh that can be used to perform queries with - normal DBI - syntax.DBI - - - - PL/Perl provides additional Perl commands: + via the following functions: @@ -412,6 +399,7 @@ $$ LANGUAGE plperl; SELECT * FROM test_munge(); + spi_query and spi_fetchrow work together as a pair for row sets which might be large, or for cases