Re: [BUGS] Degrade(character conversion problem)

Поиск
Список
Период
Сортировка
От Andreas Pflug
Тема Re: [BUGS] Degrade(character conversion problem)
Дата
Msg-id 3F852E58.7040701@pse-consulting.de
обсуждение исходный текст
Ответ на Re: [BUGS] Degrade(character conversion problem) pga3?  ("Hiroshi Saito" <saito@inetrt.skcapi.co.jp>)
Список pgadmin-hackers
Hiroshi Saito wrote:

>Hi Andreas.
>
>It was ascertained.
>The timing of constructer of pgConn isn't suitable for it.
>It tried to trace it in let's as below.
>----------------------------------------------------
>pgSet *pgConn::ExecuteSet(const wxString& sql)
>{
>    // Execute the query and get the status.
>    PGresult *qryRes;
>    wxLogSql(wxT("Set query (%s:%d): %s"), this->GetHost().c_str(), this->GetPort(), sql.c_str());
> if (&conv == &wxConvUTF8)
>  wxLogSql(wxT("DEBUG: conv=>wxConvUTF8"));
> else
>  if (&conv == &wxConvLibc)
>   wxLogSql(wxT("DEBUG: conv=>wxConvLibc"));
>  else
>   wxLogSql(wxT("DEBUG: conv=>others"));
>
>  qryRes = PQexec(conn, sql.mb_str(conv));
>-------------------------------------------------------
>All results are "DEBUG: conv=>wxConvLibc".
>I think how it will be modified.....
>
>

In the constructor of pgConn (line 152ff), the server encoding is
checked, and the client encoding is set to UNICODE if the server doesn't
use SQL_ASCII. If everything's successful, you should see a "Setting
client_encoding to 'UNICODE'.
I lost your log, and you didn't post it on pgadmin-hackers, so I can't
check myself.

Regards,
Andreas



В списке pgadmin-hackers по дате отправления:

Предыдущее
От: "Hiroshi Saito"
Дата:
Сообщение: Re: [BUGS] Degrade(character conversion problem) pga3?
Следующее
От: "Adam H. Pendleton"
Дата:
Сообщение: acinclude patch