I've been mucking around trying to get dump stuff from a database to a web page. This what I came up with (I'm a win32 user - forgive me brothers):
use CGI qw(-no_debug :standard);
use Win32::ODBC;
$db = new Win32::ODBC("LIB");
$stmt = "SELECT * FROM Library WHERE Number > 1800";
$rc = $db->Sql($stmt);
die qq(SQL failed "$stmt": ), $db->Error(), qq(\n) if $rc;
print header(), start_html("Test Library");
while($db->FetchRow())
{
@Data = $db->Data("Number","Title");
print "$Data[0] $Data[1]<br>\n";
}
print end_html();
$db->Close();
This works fine from the command line... no problems connecting to database or with sql statement, all html codes correct and accounted for. When I invoke it in a browser I get:
CGI Error...
Can't call method "Sql" on an undefined value at C:\InetPub\wwwroot\cgi-bin\library.pl line 7
Is this a Perl problem or an IIS (again, forgive me) problem? Any advice gratefully recieved.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.