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
- oracle
- Eclipse
- Exception
- spring
- Source
- AJAX
- IntelliJ
- Tomcat
- JavaScript
- git
- Docker
- Core Java
- Open Source
- SpringBoot
- 문서
- Spring Boot
- PostgreSQL
- Python
- MSSQL
- error
- JDBC
- jpa
- 설정
- maven
- ubuntu
- myBatis
- Thymeleaf
- 오픈소스
- MySQL
- STS
Archives
- Today
- Total
헤르메스 LIFE
[Python] DB Connection - Postgresql 본문
728x90
https://hermeslog.tistory.com/541?category=302344
import psycopg2 as psycopg2
conn = None
try:
# read connection parameters
# connect to the PostgreSQL server
print('Connecting to the PostgreSQL database...')
conn = psycopg2.connect("dbname=springboot user=hermeswing password=pass")
# create a cursor
cur = conn.cursor()
# execute a statement
print('PostgreSQL database version:')
cur.execute('SELECT version()')
# display the PostgreSQL database server version
db_version = cur.fetchone()
print(db_version)
# close the communication with the PostgreSQL
cur.close()
except (Exception, psycopg2.DatabaseError) as error:
print(error)
finally:
if conn is not None:
conn.close()
print('Database connection closed.')
728x90
'Python' 카테고리의 다른 글
[Python] 명명규칙 - 파이썬 코드 스타일 가이드 (2) | 2021.12.24 |
---|---|
[Python] tkinter 를 이용한 GUI 개발 #01 (3) | 2021.12.23 |
[crawling] Web 이미지 다운로드 (0) | 2021.12.17 |
[Ubuntu 20.04] 파이썬 최신 버전(3.9.X) 설치 (0) | 2021.12.14 |
[Python] DB Connection - MSSQL (0) | 2021.03.04 |