Subject: | an't call method "name" on unblessed reference in printf "Columns %s\n",join( ',', map {$_->name} $stmt->column_defs() ); |
Date: | Fri, 19 Jan 2018 17:09:55 +0200 |
To: | bug-SQL-Statement [...] rt.cpan.org |
From: | Kanenas Polifimos <skoypidiara [...] gmail.com> |
Hello,
I am sorry for bothering you but trying to execute the paradigm of
SQL::Statement::Structure on a Strawberry perl v5.21.1 I had the following
error.
Can't call method "name" on unblessed reference
The code is the following:
use SQL::Statement;
use Data::Dumper;
my $sql = "SELECT a,aa FROM b JOIN c WHERE c=? AND e=7 ORDER BY f DESC
LIMIT 5,2";
my $parser = SQL::Parser->new();
$parser->{RaiseError}=1;
$parser->{PrintError}=0;
# $parser->parse("LOAD 'MyLib::MySyntax' ");
my $stmt = SQL::Statement->new($sql,$parser);
printf "Command %s\n",$stmt->command;
printf "Num of Placeholders %s\n",scalar $stmt->params;
printf "Tables %s\n",join( ',', map {$_->name} $stmt->tables() );
printf "Where operator %s\n",join( ',', $stmt->where->op() );
printf "Limit %s\n",$stmt->limit();
printf "Offset %s\n",$stmt->offset();
printf "Columns %s\n",join( ',', map {$_->name} $stmt->column_defs() );
Can you please help?
Thank you
Lalakis Oeisagwmenos