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
- DataAnalysis
- ubuntu
- Tensor Board Image
- 엑셀
- Nvidia 깨짐
- windows form
- MySQL
- Python
- Multi Processing
- Tensor Board
- Pandas
- openpyxl
- json
- Window_Control
- 절대경로
- nvidia 삭제
- 상대경로
- 시작 시 프로그램 실행
- C#
- keras
- datetime
- 화면 안나옴
- Ubuntu 18.04_2
- 시간
- Import
- SQL
- WPF
- ipdisk
- 기초
- xlsx
Archives
- Today
- Total
목록SQL (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