Skip Menu |

This queue is for tickets about the DBIx-Report-Excel CPAN distribution.

Report information
The Basics
Id: 60912
Status: resolved
Priority: 0/
Queue: DBIx-Report-Excel

People
Owner: Nobody in particular
Requestors: wjgeorge7 [...] yahoo.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.1b
Fixed in: (no value)



Subject: Incorrect description of parameters to "new" function"
function "new" is described as having a third optional parameter, shown in the example as being an anonymous hash: my $report = DBIx::Report::Excel->new( "Excel.xls", { dbh => DBI->connect("dbi:SQLite:dbname=testdb","","") sql => 'SELECT * FROM names', } ); The code does not support this. In order to work the example needs to be changed to: my $report = DBIx::Report::Excel->new( "Excel.xls", dbh => DBI->connect("dbi:SQLite:dbname=testdb","","") sql => 'SELECT * FROM names', );
resolved in v.0.2