취미와 밥줄사이

[Python] MySQL 연결 만들기 본문

DB

[Python] MySQL 연결 만들기

취미와 밥줄사이 2021. 10. 26. 16:16

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