Grygonos has asked for the wisdom of the Perl Monks concerning the following question:
I didn't even know what to search for on CPAN. Anyone have any ideas on how to get me started?#!/pseudo -w use pseudostrict; use DBI; my $dbh = DBI->connect('dbi:ODBC:DB',$login,$pass); my $query = q{SELECT MemberID FROM UnfinishedRequests WITH (NOLOCK)}; my $sth = $dbh->prepare($query); $sth->execute(); while(my @row = $sth->fetchrow_arrayref) { #Copy the MemberID to the clipboard #Swap to make the db app the active app #Paste the MemberID into the other app's query box #A Dialog box pops up on the other app if there is not a hit for +that MemberID. I want to be able to tell if that box is present... i +f it is not record it in my database as a hit.. other wise not found. } $dbh->disconnect();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Logical Macro w/ Perl
by CountZero (Bishop) on Dec 23, 2003 at 22:21 UTC | |
|
Re: Logical Macro w/ Perl
by maa (Pilgrim) on Dec 24, 2003 at 14:48 UTC | |
by Grygonos (Chaplain) on Dec 24, 2003 at 23:56 UTC |