취미와 밥줄사이
[Python] MySQL 연결 만들기 본문
Python MySQL
- python은 데이터베이스 어플리케이션으로 사용될 수 있음
- 가장 인기있는 데이터베이스 중 하나는 MySQL
MySQL Database
MySQL Driver 설치하기
- 파이썬으로 MySQL 데이터베이스 접근하기 위해서는 MySQL 드라이버가 필요함
- MySQL Connector 드라이버를 사용할 수 있다.
- MySQL Connector 설치하기
-
# cmd에 mysql 드라이버 설치하기 pip install mysql-connector-python
연결 만들기
- 데이터베이스 연결을 생성하여 시작
- MySQL 데이터베이스의 사용자 이름과 비밀번호가 필요하다
-
import mysql.connector mydb = mysql.connector.connect( host="localhost", user="yourusername", password="yourpassword" ) print(mydb)
REFERENCE
https://www.w3schools.com/python/python_mysql_getstarted.asp
Python MySQL
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
'DB' 카테고리의 다른 글
[Python] MySQL 테이블 만들기 (0) | 2021.10.27 |
---|---|
[Python] MySQL 데이터베이스 만들기 (0) | 2021.10.26 |
[ 프로그래머스 ] SQL - 입양 시각 구하기(1) (0) | 2021.05.30 |
[ 프로그래머스 ] SQL - 동명 동물 수 찾기 (0) | 2021.05.30 |
[ 프로그래머스 ] SQL - 고양이와 개는 몇 마리 있을까? (0) | 2021.05.30 |