cosmicsoup has asked for the wisdom of the Perl Monks concerning the following question:
$dbh->dbcmd($SQL); $dbh->dbsqlexec; while ($dbh->dbresults != NO_MORE_RESULTS) { while (@data = $dbh->dbnextrow) { $Id = $data[0]; $Status = $data[1]; $StatusDate = $data[2]; $Severity = $data[3]; $Priority = $data[4]; $ProjectId = $data[5]; $SubSystem = $data[6]; $Process = $data[7]; $Name = $data[8]; $EnteredBy = $data[9]; $DateEntered = $data[10]; $Contact = $data[11]; $Closed = $data[12]; $DateClosed = $data[13]; $ClosedReason = $data[14]; $Summary = $data[15];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: PERL CGI Newbie Question
by Ovid (Cardinal) on Dec 13, 2002 at 21:39 UTC | |
by Tanalis (Curate) on Dec 13, 2002 at 22:01 UTC | |
by cosmicsoup (Beadle) on Dec 13, 2002 at 22:05 UTC | |
|
Re: PERL CGI Newbie Question
by Tanalis (Curate) on Dec 13, 2002 at 20:06 UTC | |
by cosmicsoup (Beadle) on Dec 13, 2002 at 20:28 UTC | |
|
Re: PERL CGI Newbie Question
by fruiture (Curate) on Dec 13, 2002 at 20:05 UTC |