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 | 31 |
Tags
- Python
- 엑셀
- Tensor Board
- ubuntu
- MySQL
- xlsx
- 시작 시 프로그램 실행
- openpyxl
- 화면 안나옴
- DataAnalysis
- 시간
- 상대경로
- Ubuntu 18.04_2
- WPF
- nvidia 삭제
- Multi Processing
- 기초
- ipdisk
- json
- datetime
- keras
- Window_Control
- Import
- Nvidia 깨짐
- C#
- 절대경로
- windows form
- SQL
- Tensor Board Image
- Pandas
Archives
- Today
- Total
목록MySQL (1)
Kminseo
Python MySQL 사용하기
Python에서 Mysql 을 사용하기 위한 방법과 Code를 설명하는 내용입니다. pip install pymysql설치하는 방법으로 Python이 설치되어있는 경우 pip를 사용하여 mysql Package를 install 해야합니다. 서버 연결 및 DB 정보 불러오기 import pymysql // test_db = pymysql.connect( user='DB_Server_ID', passwd='DB_Server_PW', host='Server_Address', // IP or Server Address db='DB_Name', charset='utf8' ) cursor = test_db.cursor()서버 연결 DB정보 불러..
Python/프로그래밍
2023. 1. 15. 02:21