[Python]PPAS 연동 및 오라클 접속
기본 Python 2.7 설치가 되어 있는 기준으로 설명을 합니다. 윈도우 기준입니다. 윈도우를 좋아하지 않지만 테스트 환경이 제대로 마련되지 않아서..... 먼저 PostgresQL http://www.stickpeople.com/projects/python/win-psycopg/ 윈도우 Python 과 PostgresQL 버젼확인 필요 PPAS로 테스트를 했으며 별 문제가 없음. import psycopg2 conn_string = "host='ip' port='5444' dbname='dbname' user='user' password='user'" try: conn = psycopg2.connect(conn_string) except: print "ERROR" cur = conn.cursor() ..