Subject: | Builtin function called with parens for DBI::do |
I'm getting the complaint of "Builtin function called with parens" for DBI's "do" method, e.g., at line 6 of this:
#!/usr/local/bin/perl
use strict;
use DBI;
my $dbh = DBI->connect('dbi:mysql:test', '', '');
$dbh->do('select 1+1');
I can't quite figure out a patch for this, but obviously it's confusing Perl's "do" with DBI's.
ky