일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Exception
- error
- myBatis
- IntelliJ
- Eclipse
- Spring Boot
- PostgreSQL
- Tomcat
- MySQL
- Open Source
- MSSQL
- git
- SpringBoot
- maven
- STS
- jpa
- Source
- AJAX
- Core Java
- Thymeleaf
- oracle
- Python
- 오픈소스
- ubuntu
- JDBC
- 설정
- Docker
- JavaScript
- spring
- 문서
- Today
- Total
목록DB Connection (3)
헤르메스 LIFE
https://hermeslog.tistory.com/541?category=302344 [SpringBoot] PostgreSQL 연결하기 IDE : IntelliJ JDK : OpenJDK 11 Framework : Spring Boot 2.5.2 Database : PostgreSQL 최신버전 ( 라이센스도 소스공개의무도 없음 ) 첨부파일이 MySqlRunner 로 되어있는데.. MySQL 접속테스트 중 소스만 바.. hermeslog.tistory.com import psycopg2 as psycopg2 conn = None try: # read connection parameters # connect to the PostgreSQL server print('Connecting to the Pos..
1. MySQL Connection (venv) C:\JetBrains\pythonProject\venv\Scripts>pip install mysql-connector-python Collecting mysql-connector-python Downloading mysql_connector_python-8.0.23-py2.py3-none-any.whl (379 kB) |████████████████████████████████| 379 kB 939 kB/s Collecting protobuf>=3.0.0 Downloading protobuf-3.15.3-py2.py3-none-any.whl (173 kB) |████████████████████████████████| 173 kB 6.4 MB/s Col..
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_..