*** pgsql/doc/src/sgml/plperl.sgml 2008/03/28 00:21:55 2.68 --- pgsql/doc/src/sgml/plperl.sgml 2008/04/10 15:16:46 2.69 *************** *** 1,4 **** ! PL/Perl - Perl Procedural Language --- 1,4 ---- ! PL/Perl - Perl Procedural Language *************** BEGIN { strict->import(); } *** 309,328 **** 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: --- 309,315 ---- Access to the database itself from your Perl function can be done ! via the following functions: *************** $$ LANGUAGE plperl; *** 412,417 **** --- 399,405 ---- SELECT * FROM test_munge(); + spi_query and spi_fetchrow work together as a pair for row sets which might be large, or for cases