get '/api/log_mon/get_log' => sub{ my $c = shift; my $env = $c->param('env'); my $host = $c->param('host'); use DBI; my $dbUser='DEVOPS'; my $user="root"; my $passwd="1234567"; my @arr2=();; my $dbh = DBI->connect("dbi:mysql:database=DEVOPS;host=192.168.32.161;port=3306",$user,$passwd,{mysql_enable_utf8 => 1} ) or die "can't connect to database ". DBI-errstr; my $hostSql = qq{select sn,host_name,host_ip,v_date,info,env from err_info where env='$env' and host_name='$host' order by v_date desc limit 20}; my ($a1, $a2, $a3,$a4,$a5,$a6,$a7,$a8,$a9); my $selStmt = $dbh->prepare($hostSql); $selStmt->execute(); $selStmt->bind_columns(undef, \$a1, \$a2, \$a3,\$a4,\$a5,\$a6); #$selStmt->execute(); while( $selStmt->fetch() ){ push (@arr2, "$a1 $a2 $a3 $a4 $a5 $a6\n" ); }; chomp @arr2; print "\@arr2 is @arr2\n"; $c->render(json => \@arr2); };
Mojo Mysql utf-8字符集 需要{mysql_enable_utf8 => 1}
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
mysql 字符集 utf8 UTF-8
是用mysql的时候,字符编码是
MySQL Linux Windows mysql ci -
UTF-8 字符集基础
字符集简史 在所有字符集中,最知名可能要数被称为ASC
input byte 语言 null 扩展 -
MySQL将utf8字符集改为utf8mb4
前言今天在查看tomcat日志时发现了一个错误:Cause: java.sql.SQLException: Incorrect string value: '\xF0\x9F\x98\x82\xF0\x9F...' for column 'name' at row 1在网上查找了说是mysql的字符集编码的问题,因为mysql的utf8编码最大是3个字节,而现在比较流行的emoji表情是四
Incorrect string val xF0x9Fx98x82xF0x9F mysql utf8mb4 mysql升级utf8编码 mysql 存储emoji -
mysql utf8mb4和utf8字符集的区别
连接限制:某些版本的MySQL会限制UTF-8编码的字符长度为3个字节,这意味
mysql 数据库 java MySQL ico