Hello,
I'm trying to create a postgres database on a FreeBSD 6.2 machine like this:
createdb -E utf-8 -U pguser -p 5432 -h localhost mydb
Open in new window
When I list the databses with "psql -l", I see:
List of databases
Name | Owner | Encoding
------------+-------+-----------
mydb | pguser | UNICODE
Open in new window
Why "UNICODE" and not UTF-8?
Thanks!