如何使用 DBI 从数据库中读取中文文本?
Posted
技术标签:
【中文标题】如何使用 DBI 从数据库中读取中文文本?【英文标题】:How to read Chinese text from a database using DBI? 【发布时间】:2020-10-20 01:42:36 【问题描述】:我有一个包含中文文章列表的数据库,当我尝试查询以获取所有文章名称时遇到问题,我看到的只是 ???而不是中文文本。
my $db_connection = DBI->connect("DBI:mysql:host=localhost;database=articles", 'root', '');
my $con = $db_connection->prepare( "select * from articles" );
$con->execute;
while (my $infoD = $con->fetchrow_hashref())
$INFO$infoD->name .= decode('utf8', $infoD->name);
【问题讨论】:
【参考方案1】:在你的连接字符串中声明它应该使用 utf8
DBI->connect("DBI:mysql:host=localhost;database=articles", 'root', '',mysql_enable_utf8 => 1);
如果你有 utf8mb4
你必须用mysql_enable_utf8mb4 => 1
替换mysql_enable_utf8 => 1
编辑:
也可以在这里查看UTF8 all the way
【讨论】:
以上是关于如何使用 DBI 从数据库中读取中文文本?的主要内容,如果未能解决你的问题,请参考以下文章