■ PostgreSQL 데이터베이스를 사용하는 방법을 보여준다.
1. 아래 웹 사이트에서 접속한다.
▶ URL
1 2 3 |
http://www.stickpeople.com/projects/python/win-psycopg/ |
2. 파이썬 버전과 윈도우 32/64비트 버전에 따라 win-psycopg의 해당 파일을 다운로드 받는다.
3. 다운로드 받은 파일을 실행해 상기 프로그램을 설치한다.
4. 아래 소스 코드를 실행한다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import psycopg2 connectionString = "host='127.0.0.1' dbname='postgres' user='postgres' password='1234'" connection = psycopg2.connect(connectionString) cursor = connection.cursor() sql = "SELECT * FROM pg_class" cursor.execute(sql) resultList = cursor.fetchall() connection.commit() for result in resultList: print(result) cursor.close() connection.close() |