All thing of the world!

python postresql 데이터베이스 접속 코딩(connection code) 본문

IT/python

python postresql 데이터베이스 접속 코딩(connection code)

WorldSeeker 2023. 4. 29. 18:52

python으로 postgresql 데이터베이스에 접속하는 코드(coding)를 정리한다.

 

1. psycopg2 설치

pip install psycopg2

2. connection 코드 작성

 

import psycopg2

try:
cnx = psycopg2.connect(user='scott', password='password',
                              host='127.0.0.1',
                              database='employees')

except psycopg2.Error as err:
    print(err)
else:
    cnx.close()

끝.

Comments