Ask a Question related to PERL Modules, Design and Development.
-
Martin Bach #1
DBD::Chart: DBI->connect fails "DBD/Chart.pm did not return a true value"
Hello Group!
I've got a problem with DBD::Chart (0.80). When I try to execute the
following script:
#!/usr/bin/perl -W
use DBI;
my $dbh = DBI->connect('dbi:Chart:');
print "Connect successfull\n" if defined $dbh;
$dbh->close;
I get the errormessage:
install_driver(Chart) failed: DBD/Chart.pm did not return a true value
at (eval 2) line 3.
at /srv/www/cgi-bin/chart.pm line 18.
The same error also occurs when I do not try to use DBD::Chart
together with apache (from the console and with X running).
After the "make" process finished w/o warnings, I made tests which
were all successful. I have all the dependend modules and libraries
installed - I don't have a clue, where the thing fails. Anybody can
help?
Regards,
Martin
PS: SuSE Linux Pro 8.1 on i386.
Martin Bach Guest
-
#39195 [Opn->Bgs]: if (0=="any sting") echo "it's return true";
ID: 39195 Updated by: derick@php.net Reported By: waynewn at citiz dot net -Status: Open +Status: ... -
#39195 [NEW]: if (0=="any sting") echo "it's return true";
From: waynewn at citiz dot net Operating system: win/freebsd PHP version: 5.1.6 PHP Bug Type: Scripting Engine problem Bug... -
"Sliced" style Pie Chart question
The 'slices' in this type of pie chart have huge spaces between them by default, can this be controlled? I looked through the developers... -
Chart makes my page "inaccessible"
I am almost done with the site I have been developing for the past week or so, and it seems that I saved the worst for last. When I add a dynamic... -
chart problem: set type="stacked"
I wrote a cfc to return an array to flex. the content is : <cfset obj=StructNew()> <cfset obj = "1"> <cfset obj = "500"> <cfset obj = "400">... -
Martin Bach #2
Re: DBD::Chart: DBI->connect fails "DBD/Chart.pm did not return a true value"
OK, I solved it. Explicitly include DBD::Chart the usual way, e.g
use DBI;
use DBD::Chart;
# more code here
Regards,
Martin Bach
Martin Bach Guest



Reply With Quote

