diff options
| author | fukachan <fukachan> | 2004-07-11 15:25:51 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-07-11 15:25:51 +0000 |
| commit | beb5a1d8ec3c57d3879d39435f726ad73e67e72f (patch) | |
| tree | b8c3a91c288916569e1dba154a738c09bacf890a /fml/lib/IO/Adapter/MySQL.pm | |
| parent | 44b291438d5f255aef4af6a30d7f1e8efd26a0b3 (diff) | |
| download | fml8-beb5a1d8ec3c57d3879d39435f726ad73e67e72f.tar.gz fml8-beb5a1d8ec3c57d3879d39435f726ad73e67e72f.tar.bz2 fml8-beb5a1d8ec3c57d3879d39435f726ad73e67e72f.zip | |
fix comments.
explicitly use "return".
modify error messages.
ensure initialized value.
Diffstat (limited to 'fml/lib/IO/Adapter/MySQL.pm')
| -rw-r--r-- | fml/lib/IO/Adapter/MySQL.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fml/lib/IO/Adapter/MySQL.pm b/fml/lib/IO/Adapter/MySQL.pm index f5bd1c03..263bb86e 100644 --- a/fml/lib/IO/Adapter/MySQL.pm +++ b/fml/lib/IO/Adapter/MySQL.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: MySQL.pm,v 1.26 2003/08/23 04:35:44 fukachan Exp $ +# $FML: MySQL.pm,v 1.27 2004/01/24 09:03:56 fukachan Exp $ # @@ -21,7 +21,7 @@ push(@ISA, 'IO::Adapter::DBI'); =head1 NAME -IO::Adapter::MySQL - interface to talk with a MySQL server +IO::Adapter::MySQL - interface to talk with a MySQL server. =head1 SYNOPSIS @@ -170,6 +170,7 @@ sub eof { my ($self) = @_; + # XXX-TODO: correct ? return( $self->{ _row_pos } < $self->{ _row_max } ? 0 : 1 ); } |
