2016-01-17 81 views
1

我想補充的UTF8編碼在這個小小的代碼:PSQL輸出HTML格式

\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 

我沒有找到相關的\ pset的命令的命令字符集

回答

0

您可以指定一個字符集對於PSQL這樣的:

\encoding utf8

使用\encoding無參數顯示當前設置。

通常,psql將自動檢測來自區域設置(Unix上的LC_CTYPE或LANG環境變量)的客戶端編碼。

+0

我試過你的答案,但它不起作用。 – Anass