All thing of the world!

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

IT/python

python 오라클 데이터베이스 접속 코딩(connection code)

WorldSeeker 2023. 4. 29. 18:55

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

 

1. cx-Oracle 설치

pip install cx-Oracle

2. connection 코드 작성

import cx_Oracle

try:

	con = cx_Oracle.connect('tiger/scott@localhost:1521/xe')

except cx_Oracle.DatabaseError as e:
	print(e)

finally:
	if cursor:
		cursor.close()
	if con:
		con.close()

   tiger는 UserId, scott은 password, 1521는 port, xe는 SID를 의미한다.

 

끝.

Comments