我想在这个小代码中添加UTF8编码:

\o page_html.html --output of the psql command

\pset format html
\pset border 1
\pset charset 'utf-8'
\pset title 'Liste des employés' --note here the character 'é'
\pset tableattr align='center'
 --\pset charset 'utf-8' ?? (something like this)
SELECT jobtitle FROM employee;
\o

我没有找到与该命令相关联的命令字符集

最佳答案

可以为psql指定一个字符集,如下所示:
\encoding utf8
使用不带参数的\encoding来显示当前设置。
通常,psql会从语言环境设置(Unix上的LC-CTYPE或LANG环境变量)中自动检测客户端编码。

关于html - PSQL输出html格式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34837793/

10-09 04:13