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();
In reply to Logical Macro w/ Perl by Grygonos
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |