perl操作sybase

來源:互聯網
上載者:User

標籤:

設定環境變數

export PERL5LIB=:/redhat/perl/lib64/perl5

 

安裝DBI

tar -xzvf DBI-1.631.tar.gzcd DBI-1.631perl Makefile.PL PREFIX=/redhat/perlmakemake testmake install

安裝DBD

tar -xzvf DBD-Sybase-1.15.tar.gz cd /redhat/mahy/DBD-Sybase-1.15perl Makefile.PL MP_AP_PREFIX=/redhat/sybase/OCS-15_0/perl PREFIX=/redhat/perlmakemake testmake install

 

指令碼:

#!/usr/bin/perluse strict;use POSIX qw(strftime);use DBI;my $dbh = DBI->connect(‘dbi:Sybase:server=TESTDB;charset=cp936‘,‘USERTEST‘,‘USERTEST‘)|| die "Database connection not made: $DBI::errstr";my $test_sql = qq{SELECT count (*) AS num_a,sum (column_2) AS num_b from TEST_DATA};my $sth = $dbh->prepare( $test_sql );my ($num_a,$num_b);$sth->execute();$sth->bind_columns( \$num_a, \$num_b);while( $sth->fetch() ) {print $num_a;print $num_b;}$sth->finish();$dbh->disconnect();

總結:
很多文章都預設以root使用者安裝
其實生產環境一般都是以非root使用者安裝軟體的,容易產生各種資源許可權問題
解決許可權環境問題有一個基本的思路,那就是指定安裝參數並且設定環境變數

環境變數多數是一些路徑

perl操作sybase

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.