博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mojo 接口返回键值对的json格式
阅读量:5239 次
发布时间:2019-06-14

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

my $c = shift;use DBI;my %hash=();  my $dbUser='zabbix';  my $user="root";  my $passwd="1234567"; my $dbh  = DBI->connect("dbi:mysql:database=$dbUser;host=192.168.32.xx;port=3306",$user,$passwd) or die "can't connect to database ". DBI-errstr;my $hostSql = qq{ select hostid,name  from hosts  where hostid in ('10001','10081','10050') };   my ($a1, $a2, $a3,$a4,$a5,$a6,$a7,$a8,$a9);  my $selStmt = $dbh->prepare($hostSql);  $selStmt->execute();$selStmt->bind_columns(undef, \$a1, \$a2);  while( $selStmt->fetch() ){ print "\$a1 is $a1\n";print "\$a2 is $a2\n";$hash{$a1}=$a2;  };print %hash;print "\n";  $c->render(json =>  \%hash );  };

转载于:https://www.cnblogs.com/zhaoyangjian724/p/6200106.html

你可能感兴趣的文章
2019春 软件工程实践 助教总结
查看>>
Remove '@Override' annotation错误
查看>>
mybatis笔记<一> Demo
查看>>
YUV 格式的视频呈现
查看>>
开通了blog写一些技术blog及感悟
查看>>
Android弹出框的学习
查看>>
349. Intersection of Two Arrays【双指针|二分】
查看>>
extjs gridpanel滚动条问题显示数据不完整
查看>>
springboot(四)设置Redis和Spring的整合
查看>>
mysql提示Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist解决方法...
查看>>
String字符串创建与存储机制
查看>>
现代程序设计 作业1
查看>>
事件和信号量
查看>>
在android开发中添加外挂字体
查看>>
Java中类体的构成
查看>>
HTML5实现图片文件异步上传
查看>>
Eclipse 4.2 汉化
查看>>
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
网络时间获取
查看>>
多线程实现资源共享的问题学习与总结
查看>>