X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlfaq8.pod;h=ed22ba0c59fa5db2b7ea8b498ab6963734b03b46;hb=f3b76584ef7773843ba39a11b8bd91238af59f12;hp=f8dda0d9b839aa936a35aa851dca60c1c932e256;hpb=b350dd2f881c6f46f8125355cf7111e4c97d1870;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlfaq8.pod b/pod/perlfaq8.pod index f8dda0d..ed22ba0 100644 --- a/pod/perlfaq8.pod +++ b/pod/perlfaq8.pod @@ -410,7 +410,7 @@ For example: } However, because syscalls restart by default, you'll find that if -you're in a "slow" call, such as EFHE, read(), connect(), or +you're in a "slow" call, such as , read(), connect(), or wait(), that the only way to terminate them is by "longjumping" out; that is, by raising an exception. See the time-out handler for a blocking flock() in L or chapter 6 of the Camel. @@ -952,10 +952,9 @@ in L. =head2 How do I use an SQL database? There are a number of excellent interfaces to SQL databases. See the -DBD::* modules available from -http://www.perl.com/CPAN/modules/dbperl/DBD . +DBD::* modules available from http://www.perl.com/CPAN/modules/DBD . A lot of information on this can be found at -http://www.hermetica.com/technologia/perl/DBI/index.html . +http://www.symbolstone.org/technology/perl/DBI/ =head2 How do I make a system() exit on control-C? @@ -977,7 +976,7 @@ sysopen(): sysopen(FH, "/tmp/somefile", O_WRONLY|O_NDELAY|O_CREAT, 0644) or die "can't open /tmp/somefile: $!": - + =head2 How do I install a module from CPAN?