전문 번역가, 번역 회사, 웹 페이지 및 자유롭게 사용할 수 있는 번역 저장소 등을 활용합니다.
if you are using postgresql, it supports character encoding that is different from backend character encoding. see the postgresql manual for details.
if you use databases with php, it is recommended that you use the same character encoding for both database and internal encoding for ease of use and better performance.
error messages may be overwritten by internal postgresql(libpq) function calls. it may not return appropriate error message, if multiple errors are occured inside a postgresql module function.
it may not return appropriate error message, if multiple errors are occured inside a postgresql module function.
enables tracing of the postgresql frontend/backend communication to a debugging file. to fully understand the results one needs to be familiar with the internals of postgresql communication protocol. for those who are not, it can still be useful for tracing errors in queries sent to the server, you could do for example grep '^to backend' trace.log and see what query actually were sent to the postgresql server.
for those who are not, it can still be useful for tracing errors in queries sent to the server, you could do for example grep '^to backend' trace.log and see what query actually were sent to the postgresql server.