pythonの接続postgresqlデータベースの単純なインスタンス
2745 ワード
python接続postgresqlデータベースの簡単なケースまずテストファイルtestを作成します.py、それからコードをファイルにコピーしますここで注意するのはpsycopg 2というパッケージを引く必要があります
testを実行します.pyファイル、コマンド:python test.py以上はpostgresqlを接続する簡単なケースです.
import psycopg2
#
conn = psycopg2.connect(database='db',user='root',password='root',host='120.0.0.1',port='5432')
#
cur = conn.cursor()
# sql
res = cur.execute('select * from di_connect_config order by id');
#
data = cur.fetchall()
#
print(data)
print(' ',len(data),' ')
# for i in data:
# print(i[2])
#
conn.close()
testを実行します.pyファイル、コマンド:python test.py以上はpostgresqlを接続する簡単なケースです.