用perl操作mysql数据库的脚本

前端之家收集整理的这篇文章主要介绍了用perl操作mysql数据库的脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

自己的记录 努力学perl中

 
 
  1. #!/usr/bin/perl -w 
  2. use strict; 
  3. use DBI; 
  4. my $dbh=DBI->connect("DBI:MysqL:hlgmall","root","123456"); 
  5. print "create table xx select * from es_user_role"; 
  6. my $sth=$dbh->prepare("create table ll select * from es_user_role"); 
  7. $sth->execute(); 
  8. $sth->finish; 
  9. my $sth1=$dbh->prepare("create table hh select * from es_user_role"); 
  10. $sth1->execute(); 
  11. $sth1->finish; 
  12. $dbh->disconnect(); 

猜你在找的Perl相关文章