728x90
파이썬 오라클 연결 코드 입니다
import cx_Oracle
# Connect to the database
connection = cx_Oracle.connect("username", "password", "host:port/sid")
# Create a cursor
cursor = connection.cursor()
# Execute a query
cursor.execute("SELECT * FROM employees")
# Fetch all the rows
rows = cursor.fetchall()
# Loop through the rows
for row in rows:
print(row)
# Close the cursor and connection
cursor.close()
connection.close()
728x90
'프로그래밍 > 파이썬' 카테고리의 다른 글
파이썬 python 괄호 안의 내용 모두 삭제 (0) | 2023.02.10 |
---|---|
파이썬 운영체제(os) 확인하기 (0) | 2023.02.04 |
파이썬 테트리스 코드 Python Tetris game example (0) | 2023.01.22 |
파이썬 셀레니움 크롬드라이버 자동 업데이트 하는법 (0) | 2022.12.05 |
파이썬 크롤링 오류 stale element reference: element is not attached to the page document (0) | 2022.12.04 |
댓글