热门关键字:  ubuntu  分区  函数  Fedora  linux系统进程

安装Sybase ASE For Linux

来源: 作者: 时间:2008-05-18 Tag: 点击:


3 基本编程范例:

#!/usr/bin/perl
use DBI;

my $server = "sybase";

my $dbh = DBI->connect('dbi:Sybase:','sa','',{syb_dbd_server=>$server});
my $sth = $dbh->prepare("sp_help");
$sth->execute();
my $text;

while(($text) = $sth->fetchrow)
{
print $text."n";
}
exit(0);


最新评论共有 0 位网友发表了评论
发表评论
评论内容:不能超过250字,需审核,请自觉遵守互联网相关政策法规。
用户名: 密码:
匿名?
注册