Hi,
I am loading a couple of mysql tables through a perl module. Apache loads
this perl module during startup.
But when I query through mod_perl it fetches only limited number of rows
from MYSQL table. rest of the rows are just ignored.
Raw query from the mysql shell yields proper results.
Please
- Original Message -
From: "c cw_1" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 18, 2001 2:28 PM
Subject: DBI problem
> Hi,
>
> I tried to connect to the database, when I compiled it, it replied with
> "(offline mode: enter name=
-)
> -Original Message-
> From: c cw_1 [SMTP:[EMAIL PROTECTED]]
> Sent: Friday, May 18, 2001 3:28 PM
> To: [EMAIL PROTECTED]
> Subject: DBI problem
>
> Hi,
>
> I tried to connect to the database, when I compiled it, it replied with
> "(offline mode:
Hi,
I tried to connect to the database, when I compiled it, it replied with
"(offline mode: enter name=value pairs on standard input)" - What is
this meant?
Below is my code:
#!/usr/bin/perl -w
use strict;
use CGI;
use DBI;
my $dbh;
my $sth;
my @row;
my $form = new CGI;
print $form->header;