Hello Gurus!
I am not new to Perl, however, pretty new to this module LWP::UserAgent, which I recently started using to send a http server and based on the request execute a proc in the database. Well, it didn't work. After a lot of searching through the code, I tried doing this:
use DBI;
use LWP::UserAgent;
my $ua = LWP::UserAgent->new;
my $r = $ua->post('http://localhost/');
my $dbh = DBI->connect("dbi:Sybase:server=$server", '$uid', '$password
+') || die "Bad db server, no donuts!";
my $sql = "declare \@rc int exec \@rc = myProcName " .
"select \@rc";
$row = $dbh->selectall_arrayref($sql);
print $row->[0][0], "\n";
It fell into an infinite wait until I manually stopped execution by Ctrl-C. However, commenting out the line of the post request, the script runs successfully... whats going wrong here? Can anyone please suggest what's the problem here and if there are any workarounds...
I am using ActivePerl 5.6 on Windows.
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.