250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- jpa
- JavaScript
- Core Java
- git
- SpringBoot
- Eclipse
- Spring Boot
- JDBC
- Open Source
- myBatis
- AJAX
- maven
- 설정
- Python
- 오픈소스
- error
- MSSQL
- Thymeleaf
- spring
- PostgreSQL
- oracle
- Docker
- IntelliJ
- ubuntu
- Exception
- Tomcat
- STS
- MySQL
- Source
- 문서
Archives
- Today
- Total
헤르메스 LIFE
[Python] DB Connection - ORACLE 본문
728x90
Python 3.9
1. cx_Oracle 라이브러리 설치
(venv) C:\JetBrains\pythonProject\venv\Scripts>pip install cx_Oracle Collecting cx_Oracle Downloading cx_Oracle-8.1.0-cp39-cp39-win_amd64.whl (207 kB) |████████████████████████████████| 207 kB 819 kB/s Installing collected packages: cx-Oracle Successfully installed cx-Oracle-8.1.0 |
1. Oracle Connection Sample #1
import cx_Oracle
#한글 지원 방법
import os
os.putenv('NLS_LANG', '.UTF8')
# 연결에 필요한 기본 정보 (유저, 비밀번호, 데이터베이스 서버주소:포트/SID)
connection = cx_Oracle.connect('hr', '1234', 'localhost:1521/XE')
cursor = connection.cursor()
print("Connection established")
# Drop previous table of same name if one exists
cursor.execute("SELECT * FROM TAB")
for x in cursor:
print(x)
# Cleanup
#conn.commit()
cursor.close()
connection.close()
print("Done.")
728x90
'Python' 카테고리의 다른 글
[Python] DB Connection - MSSQL (0) | 2021.03.04 |
---|---|
[Python] DB Connection - MySQL (0) | 2021.03.04 |
[Python] openpyxl을 이용한 Excel 파일 다루기 (0) | 2021.02.15 |
[Python] Pillow 를 이용한 이미지 변환 (0) | 2021.02.08 |
모든 파이썬 프로그래머를 위한 20가지 실용적인 파이썬 라이브러리 (0) | 2021.02.04 |