Fixed #3227 -- Clarified DATABASE_HOST semantics for PostgreSQL.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5361 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
d66b56f53b
commit
43dd1c647d
|
@ -264,6 +264,11 @@ MySQL will connect via a Unix socket to the specified socket. For example::
|
||||||
If you're using MySQL and this value *doesn't* start with a forward slash, then
|
If you're using MySQL and this value *doesn't* start with a forward slash, then
|
||||||
this value is assumed to be the host.
|
this value is assumed to be the host.
|
||||||
|
|
||||||
|
If you're using PostgreSQL, an empty string means to use a Unix domain socket
|
||||||
|
for the connection, rather than a network connection to localhost. If you
|
||||||
|
explictly need to use a TCP/IP connection on the local machine with
|
||||||
|
PostgreSQL, specify ``localhost`` here.
|
||||||
|
|
||||||
DATABASE_NAME
|
DATABASE_NAME
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue