默认为 LATIN1 编码的区域设置
我正在尝试在 postgresql 中创建一个新的数据库集群,默认为 LATIN1 编码,或者至少支持它。有谁知道我可以使用什么区域设置?我使用的是 Windows 7 64 位
谢谢
I'm trying to create a new database cluster in postgresql that defaults to LATIN1 encoding, or at least supports it. Does anybody know what locale I could use? I am on Windows 7 64bit
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在朋友的帮助下我已经弄清楚了。我可以使用:
English_Sweden.28591
I've figured it out with help from a friend. I can use:
English_Sweden.28591
如果您想更改默认编码,则必须创建一个新的
template1
数据库。该数据库用作创建新数据库的模板。删除当前数据库并使用创建 一个新数据库template0
并使用正确的编码,在您的情况下为 latin1 。在删除此数据库之前检查 template1 的所有设置,也许您也希望在新的 template1 中使用这些设置。
If you want to change the default encoding, you have to create a new
template1
database. This database serves as template for creating new databases. Drop the current one and create a new one usingtemplate0
and use the correct encoding, latin1 in your case.Check all settings for template1 before you drop this database, maybe you want these in your new template1 as well.