perl小指令碼——ftp上傳檔案、讀取資料庫表中資料
/* ftp上傳檔案 */
#!/usr/bin/perl-w
use strict;
use warnings;
#使用Net::FTP模組
use Net::FTP;
our $ftp_host = "10.55.15.232";
our $ftp_user = "username";
our $ftp_pw = "password";
&main();
exit(0);
sub main
{
&login_ftp();
}
sub login_ftp
{
my $ftp;
$ftp = Net::FTP->new($ftp_host,Passive=>1,Debug=>1,Timeout=>30) or die "Can not connect to ftp server $ftp_host : $@" , $ftp->message;
$ftp->login($ftp_user,$ftp_pw) or die "Can not login ", $ftp->message;;
$ftp->cwd("/test") or die "Can not change working directory !\n" , $ftp->message;
#$ftp->get("aaa.txt") or die "get failed ", $ftp->message;
$ftp->put("config.txt");
$ftp->quit;
}
=======================================================================
/* 讀取資料庫表中資料 */
#!/usr/bin/perl-w
use strict;
use warnings;
use DBI;
our $tnsname="criss";
our $username="zhangbin";
our $password="zhangbin";
our ($id ,$name);
print "This is a test for database connection !\n";
&main();
exit(0);
sub main
{
my $res=db_connect();
print "res = $res\n";
}
sub db_connect
{
my $sql=qq{select id, name from test1};
####資料庫連線
my $dbh=DBI->connect("dbi:Oracle:$tnsname", $username, $password) or die "Can not connect db: $DBI::errstr\n";
my $sth=$dbh->prepare($sql) or die "prepare $sql failed : $DBI::errstr\n";
$sth->execute or die "execute $sql failed : $DBI::errstr\n";
$sth->bind_columns(undef,\$id,\$name);
#while(@arr = $sth->fetchrow_array())
#{
#print join ("\t",@arr),"\n";
#}
while($sth->fetch)
{
print "$id,$name\n"
}
$sth->finish;
####斷開資料庫連線
$dbh->disconnect() or warn "DB disconnect failed: $DBI::errstr\n";
return 100;
}
#!/usr/bin/perl-w
use strict;
use warnings;
#使用Net::FTP模組
use Net::FTP;
our $ftp_host = "10.55.15.232";
our $ftp_user = "username";
our $ftp_pw = "password";
&main();
exit(0);
sub main
{
&login_ftp();
}
sub login_ftp
{
my $ftp;
$ftp = Net::FTP->new($ftp_host,Passive=>1,Debug=>1,Timeout=>30) or die "Can not connect to ftp server $ftp_host : $@" , $ftp->message;
$ftp->login($ftp_user,$ftp_pw) or die "Can not login ", $ftp->message;;
$ftp->cwd("/test") or die "Can not change working directory !\n" , $ftp->message;
#$ftp->get("aaa.txt") or die "get failed ", $ftp->message;
$ftp->put("config.txt");
$ftp->quit;
}
=======================================================================
/* 讀取資料庫表中資料 */
#!/usr/bin/perl-w
use strict;
use warnings;
use DBI;
our $tnsname="criss";
our $username="zhangbin";
our $password="zhangbin";
our ($id ,$name);
print "This is a test for database connection !\n";
&main();
exit(0);
sub main
{
my $res=db_connect();
print "res = $res\n";
}
sub db_connect
{
my $sql=qq{select id, name from test1};
####資料庫連線
my $dbh=DBI->connect("dbi:Oracle:$tnsname", $username, $password) or die "Can not connect db: $DBI::errstr\n";
my $sth=$dbh->prepare($sql) or die "prepare $sql failed : $DBI::errstr\n";
$sth->execute or die "execute $sql failed : $DBI::errstr\n";
$sth->bind_columns(undef,\$id,\$name);
#while(@arr = $sth->fetchrow_array())
#{
#print join ("\t",@arr),"\n";
#}
while($sth->fetch)
{
print "$id,$name\n"
}
$sth->finish;
####斷開資料庫連線
$dbh->disconnect() or warn "DB disconnect failed: $DBI::errstr\n";
return 100;
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28929558/viewspace-1170202/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 前端讀取Excel表中資料前端Excel
- 把影像檔案上傳到資料庫,並從資料庫讀出 (轉)資料庫
- Linux ftp 自動上傳備份檔案指令碼LinuxFTP指令碼
- 如何建立最簡單的 ABAP 資料庫表,以及編碼從資料庫表中讀取資料 (上)資料庫
- 使用openpyxl庫讀取Excel檔案資料Excel
- android直接讀取資料庫檔案Android資料庫
- Excel上傳並讀取資料Excel
- http不使用Form表單傳送檔案資料和非檔案資料(上傳篇)HTTPORM
- PHP ftp上傳檔案PHPFTP
- 讀取資料夾檔案
- Java讀取properties檔案連線資料庫Java資料庫
- c# 上傳FTP檔案C#FTP
- 定時ftp上傳,如何設定定時ftp上傳檔案FTP
- 使用yaml檔案讀取資料YAML
- perl檔案上傳程式,支援多檔案! (轉)
- 備忘錄:C#獲取微信小程式的雲資料庫中資料C#微信小程式資料庫
- EasyExcel庫來讀取指定Excel檔案中的資料Excel
- 利用ftp自動上傳檔案FTP
- 【Git/Github】向已有倉庫上傳檔案/資料夾Github
- 資料庫建表和上線指令碼常見規範資料庫指令碼
- perl 讀mysql 資料 。MySql
- ajax讀取資料庫資料程式碼例項資料庫
- HDFS讀檔案過程分析:讀取檔案的Block資料BloC
- vb向資料庫中讀取單個圖片檔案資料庫
- Hibernate 讀取檔案到資料庫的一個bug資料庫
- SQL Server 中資料庫檔案的存放方式,檔案和檔案組SQLServer資料庫
- php如何上傳txt檔案,並且讀取txt檔案PHP
- 從ftp上傳下載檔案(二)FTP
- 從ftp上傳下載檔案(一)FTP
- Perl連線Oracle資料庫的一些操作指令碼【轉】Oracle資料庫指令碼
- 快取依賴(檔案、資料庫)快取資料庫
- 獲取資料庫bak檔案資訊資料庫
- C# exe上傳檔案和提交表單資料的方法C#
- C# FTP上傳檔案至伺服器程式碼C#FTP伺服器
- C# 操縱貼上板 Clipboard(傳送資料、讀取資料、清空資料)C#
- 利用反射讀取資料庫資料反射資料庫
- sqlserver讀取oracle資料庫資料SQLServerOracle資料庫
- perl 讀寫檔案