Author: timbo
Date: Fri Feb 8 14:31:16 2008
New Revision: 10705
Modified:
dbi/trunk/lib/DBD/File.pm
Log:
Clarify error message text (re rt#33015)
Modified: dbi/trunk/lib/DBD/File.pm
==============================================================================
--- dbi/trunk/lib/DBD/File.pm (original)
+++ dbi/trunk/lib/DBD/File.pm Fri Feb 8 14:31:16 2008
@@ -462,7 +462,7 @@
my $sth = shift;
my $data = $sth->{f_stmt}->{data};
if (!$data || ref($data) ne 'ARRAY') {
- $sth->set_err($DBI::stderr, "Attempt to fetch row from a Non-SELECT
statement");
+ $sth->set_err($DBI::stderr, "Attempt to fetch row without a preceeding
execute() call or from a non-SELECT statement");
return undef;
}
my $dav = shift @$data;