我正在使用https://github.com/brianc/node-postgres pg
模块。显然我不能使用Unicode密码来连接数据库。从具有连接参数的相同位置psql
开始就可以了。使用Node.js,它给出了ne password authentication failed for user
。当我查看console.log()
时,我确切地看到了我的期望。如果我在db和连接字符串中都将密码更改为ASCII,则一切正常。但是我需要使用旧的Unicode密码......
我尝试了https://github.com/brianc/node-postgres/wiki/Client
new pg.Client({...password: Código
和
conString = "postgres://...Código@"
我知道ODBC(Driver={PostgreSQL UNICODE};
)和JDBC(;Unicode=true
)都支持连接字符串中的UTF。我在Node.js pg
模块UTF支持上找不到任何内容。
请帮忙。
我看到了http://www.connectionstrings.com/postgresql/并阅读了https://github.com/brianc/node-postgres上的文档。请帮助解决这个问题。
谢谢!