esolm has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl # ed.pl use warnings; use strict; use DBI; print "Content-type: text/html\n\n"; print "<html><head><title>Enviroment Dumper </title></head><body>"; my ($CDS, $UPDATE, $id, $text, $sqlquery, $prodnum, $catid, $catnum, $sqlquery1, $description, $count, $pccount, $sqlquery2,$s +qlquery3, $cecount ); my (@list, @count, @pccount, @cecount); # DATABASE CONNECT*************************************** $CDS=DBI->connect('DBI:ODBC:claudonntCDS', 'xxxx') || die "error opening database: $DBI::errstr\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: using odbc while logged off
by tinman (Curate) on May 14, 2001 at 23:41 UTC | |
|
Re: using odbc while logged off
by arturo (Vicar) on May 14, 2001 at 23:58 UTC |