Changeset 822
- Timestamp:
- 03/09/07 19:58:47 (1 year ago)
- Files:
-
- pg8000/trunk/pg8000.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pg8000/trunk/pg8000.py
r821 r822 340 340 # Stability: Added in v1.00, stability guaranteed for v1.xx. 341 341 # 342 # @param host The hostname of the PostgreSQL server to connect with. Only343 # TCP/IP connections are presently supported, so this parameter is mandatory.344 #345 342 # @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. 347 353 # 348 354 # @keyparam port The TCP/IP port of the PostgreSQL server instance. This
