본문 바로가기
프로그래밍/파이썬

파이썬 오라클 연결 코드 Python oracle example

by 젤리씨 2023. 1. 22.
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

댓글