- 招聘 : Linux运维
- 论坛徽章:
- 0
|
环境:RH9,DBD-0.91,freetds-0.51,DBI-1.38,MSSQL2K(另一台数据库服务器)
源码:
BEGIN
{
$ENV{'SYBASE'}="/usr/local/freetds";
}
use DBI;
$SENDMAIL = '/usr/sbin/sendmail';
$LASTSENT = '/home/msgsndr/lastsentmsg';
$SERVERID = '005';
$sleepcoefficent = 0.01; ## SleepCoefficent -- Sleep Time (Seconds) / 1 mail
$dbh = DBI->;connect("DBI:Sybase:server=112db","xxx","xxxx" ||die "cant connect $DBI::errstr";
$dbh->;do("use mailtest" ;
$dbh->;do("set textsize 80000" ;
$sql = qq!
select mailjob.id,sourcename,mailsource,subject,mail,class
from mailjob,mailcontent where mailjob.mailcontentid=mailcontent.id
and mailjob.id in (select min(mainid) from mailjob_sub where status='U' and serverid='$SERVERID')
!;
$sth = $dbh->;prepare($sql) ||die "Can't prepare $sql: $dbh->;errstr\n";
$rv = $sth->;execute or die "can't execute the query: $sth->;errstr\n";
print $rv;
my $maildata=$sth->;fetchrow_hashref();
$sth->;finish();
$mainid = $maildata->;{"id"};
$title = $maildata ->;{"subject"};
$source = $maildata ->;{"sourcename"};
print "$source\n";
print "$title\n";
exit;
$titel包含有中文与英文,中文部分出现乱码,请各位请点,不胜感激 |
|