Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 가장 많이 사용되는 파이썬 라이브러리
- 오라클 데이터베이스 내장함수
- 공개서적
- Python
- 주택임대사업자
- 종합소득세
- robux
- 데이터 리터러시
- 가장 많이 사용되는 파이썬 패키지
- 상업시설용지 분양
- PostgreSQL
- 나는 어디로?
- 파이썬 TypeError
- 가장 인기있는 파이썬 패키지
- Google vs OpenAI
- 임대소득외 추가소득이 있을 경우
- 종합과세
- 라이브러리 vs 패키지
- 전세보증보험
- chatgpt vs bard
- 주상복합용지 분양
- chatgpt 100% 신뢰금지
- 오피스텔투자
- bard 100% 신뢰금지
- Google vs MicorSoft
- 소형주택 세액감면
- 다주택임대
- 2룸 오피스텔 투자
- 가장 인기있는 파이썬 라이브러리
- 갤럭시탭 with Pen
Archives
All thing of the world!
python 데이터베이스 접속(connection code) 정리 본문
python으로 각종 데이터베이스에 접속하는 코드(coding)를 정리한다.
1. 오라클(Oracle DBMS)
pip install cx-Oracle
위와 같이 cx-Oracle 설치 후 아래 코드 실행
import cx_Oracle
try:
con = cx_Oracle.connect('tiger/scott@localhost:1521/xe')
except cx_Oracle.DatabaseError as e:
print(e)
finally:
if cursor:
cursor.close()
if con:
con.close()
tiger는 UserId, scott은 password, 1521는 port, xe는 SID를 의미한다.
2. mysql connection
pip install mysql.connector
위와 같이 mysql.connector를 설치 후 아래 코드 실행
import mysql.connector
from mysql.connector import errorcode
try:
cnx = mysql.connector.connect(user='scott', password='password',
host='127.0.0.1',
database='employees')
except mysql.connector.Error as err:
print(err)
else:
cnx.close()
3. postgresql connection
pip install psycopg2
위와 같이 psycopg2를 설치 후 아래 코드 실행
import psycopg2
try:
cnx = psycopg2.connect(user='scott', password='password',
host='127.0.0.1',
database='employees')
except psycopg2.Error as err:
print(err)
else:
cnx.close()
4. mongodb connection
pip install pymongo
위와 같이 pymongo를 설치 후 아래 코드 실행
from pymongo import MongoClient
try:
cnx = MongoClient('mongodb://scott:password@localhost:27017/')
db = client['employees']
except psycopg2.Error as err:
print(err)
else:
cnx.close()
끝.
'IT > python' 카테고리의 다른 글
python postresql 데이터베이스 접속 코딩(connection code) (0) | 2023.04.29 |
---|---|
python mysql 데이터베이스 접속 코딩(connection code) (0) | 2023.04.29 |
python Scrapy 초간단 사용법 정리 (2) | 2023.04.29 |
merge 설명 : python pandas 함수 (0) | 2022.03.27 |
concat 설명 : python pandas 함수 (0) | 2022.03.27 |
Comments