python Oracle example 썸네일형 리스트형 Python - Oracle Database 연결 샘플 코드 Reference 아래 사이트를 참조하여 작성한 코드입니다. Oracle Database Connection in Python cx_Oracle 8 Installation 사전 조건: cx_Oracle 모듈을 설치("python -m pip install cx_Oracle --upgrade") 되어 있어야 하고, 오라클 클라이언트 라이브러리가 Path에 잡혀 있어야 합니다. import logging import cx_Oracle username = 'system' password = 'Welcome123' dsn = '150.136.212.183/orclpdb1' port = 1521 encoding = 'UTF-8' logger = logging.getLogger() logger.setLevel(lo.. 더보기 이전 1 다음