All thing of the world!

python mysql 데이터베이스 접속 코딩(connection code) 본문

IT/python

python mysql 데이터베이스 접속 코딩(connection code)

WorldSeeker 2023. 4. 29. 18:50

python으로 mysql 데이터베이스에 접속하는 코드(coding)를 정리한다.

 

1. mysql.connector 설치

pip install mysql.connector

2. connection 코드 작성

 

import mysql.connector
from mysql.connector import errorcode

try:
cnx = mysql.connector.connect(user='scott', password='password',
                              host='127.0.0.1',
                              database='employees')
                              
except mysql.connector.Error as err:
    print(err)
else:
    cnx.close()

끝.

Comments