Changeset 822

Show
Ignore:
Timestamp:
03/09/07 19:58:47 (1 year ago)
Author:
mfenniak
Message:

Update docs for unix_sock

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pg8000/trunk/pg8000.py

    r821 r822  
    340340# Stability: Added in v1.00, stability guaranteed for v1.xx. 
    341341# 
    342 # @param host   The hostname of the PostgreSQL server to connect with.  Only 
    343 # TCP/IP connections are presently supported, so this parameter is mandatory. 
    344 # 
    345342# @param user   The username to connect to the PostgreSQL server with.  This 
    346 # parameter is mandatory. 
     343# parameter is required. 
     344
     345# @keyparam host   The hostname of the PostgreSQL server to connect with. 
     346# Providing this parameter is necessary for TCP/IP connections.  One of either 
     347# host, or unix_sock, must be provided. 
     348
     349# @keyparam unix_sock   The path to the UNIX socket to access the database 
     350# through, for example, '/tmp/.s.PGSQL.5432'.  One of either unix_sock or host 
     351# must be provided.  The port parameter will have no affect if unix_sock is 
     352# provided. 
    347353# 
    348354# @keyparam port   The TCP/IP port of the PostgreSQL server instance.  This