[root@linux tmp]# cat pgsql.py |more
#!/usr/bin/python
#############################################################
# Created 2003-12-6
# Modified
# Project PostgreSQL Converse
# Model Create Java Entity Bean (not EJB CMP)
# Company Organizations
# Author 陳景峰
# Nickname netkiller
# Email openunix@163.com
# Version 1.0
# Database PostgreSQL 7.3.4
#############################################################
import pg
import string
db = pg.DB(dbname='netkiller', host='127.0.0.1', user='netkiller',passwd='chen')
|