[개미의 걸음 Pandas 4차시] Oracle과 연동(.makedsn, .connect, .cursor, .execute)
Oracle 데이터와 연동 ※ 사용자마다 다를 수 있는 부분들은 별도의 색으로 표기했습니다. ※ 변수명은 본인이 사용하기 편한 변수명을 사용하시면 됩니다. 모듈 import import pandas as pd from pandas import DataFrame import cx_Oracle cx_Oracle이 설치가 안되어 있는 경우 → !pip install cx_Oracle Oracle과 Python(Pandas) 연동 dsn = cx_Oracle.makedsn('localhost',1521,'xe') conn = cx_Oracle.connect('local-hr','hr',dsn) cx_Oracle.makedsn('host',port,'sid')의 형식으로 입력 → oracle에서 가져오고 싶은 D..
Python
2021. 1. 4. 07:07