博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
perl连接mysql的例子
阅读量:6197 次
发布时间:2019-06-21

本文共 588 字,大约阅读时间需要 1 分钟。

 

 
  1. #!/bin/perl 
  2.  
  3. load module 
  4. use DBI; 
  5.  
  6. connect 
  7. my $dbh = DBI->connect("DBI:mysql:database=db2;host=localhost""joe""guessme", {
    'RaiseError' => 1}); 
  8.  
  9. execute INSERT query 
  10. my $rows = $dbh->do("INSERT INTO users (id, username, country) VALUES (4, 'jay', 'CZ')"); 
  11. print "$rows row(s) affected "
  12.  
  13. execute SELECT query 
  14. my $sth = $dbh->prepare("SELECT username, country FROM users"); 
  15. $sth->execute(); 
  16.  
  17. # iterate through resultset 
  18. # print values 
  19. while(my $ref = $sth->fetchrow_hashref()) { 
  20.     print "User: $ref-> "
  21.     print "Country: $ref-> "
  22.     print "---------- "
  23.  
  24. # clean up 
  25. $dbh->disconnect(); 

 

转载地址:http://vwjca.baihongyu.com/

你可能感兴趣的文章
MySQL入门02-MySQL二进制版本快速部署
查看>>
线程实例
查看>>
Jquery操作select、checkbox、radio详细讲解
查看>>
Rabbitmq -Publish_Subscribe模式- python编码实现
查看>>
EF方便的添加一条信息...
查看>>
SharpGL学习笔记(十七) 立体文字和平面文字
查看>>
React Native知识10-ListView组件
查看>>
教你一招:Excel中使用MID函数获取身份证中的出生年月日
查看>>
ubuntu for win10 里运行apache+php
查看>>
分析oracle的执行计划(explain plan)并对对sql进行优化实践
查看>>
order by
查看>>
swift 类 与 结构体
查看>>
Liferay7 BPM门户开发之29: 核心kernel.util包下面的通用帮助类ParamUtil、GetterUtil使用...
查看>>
盒子模型
查看>>
[redis] redis.clients.jedis.exceptions.JedisDataException: MOVED 13102 127.0.0.1
查看>>
JavaScript常见原生DOM操作API总结
查看>>
angularjs 中的$digest和$apply区别
查看>>
MySQL 监控
查看>>
url下载网页的三种方法
查看>>
jdk8中java.util.concurrent包分析
查看>>