-
[ Python ] cx_Oracle을 이용한 oracle 연결Python/Python Programming 2022. 6. 27. 23:10
Installing oracle module
pip install cx_Oracle
Example
import cx_Oracle conn = cx_Oracle.connect('userid','password','host/sid') cursor = conn.cursor() cursor.execute(' ') rows = cursor.fetchall() print(row) cursor.close() conn.close()
'Python > Python Programming' 카테고리의 다른 글
[ Python ] elastcisearch index 생성, 삭제, 조회 (0) 2023.04.14 [ Python ] Remine API 사용하기 (0) 2023.03.21 [ Python ] Tree Graph 만들기 (0) 2023.02.15 [ Python ] eval과 literal_eval 차이 (0) 2022.07.03 [Python] 줄 바꿈(\n) 을 포함 입력 (0) 2020.11.28 [Python] Celsius temperature To Fahrenheit's temperature Basic Function (섭씨, 화씨) (0) 2020.11.22 [Python] 할당된 변수들을 반복문으로 실행하기. (eval 함수이용) (0) 2020.11.02 [Python] string 모듈을 이용한 임의의 패스워드 만들기 (0) 2020.10.16