Python 에서 MySQL 연결하기
프로그래밍/Python2021. 6. 28. 15:24
반응형
필요한 라이브러리를 설치합니다.
# pip3 install mysql-connector
예제 (test.py)
import mysql.connector conn = mysql.connector.connect( host = "localhost", user = "sysdocu", password = "12345678", database = "sysdocu" ) cursor = conn.cursor() sql = "UPDATE log SET name=%s, status=%s, number=%s" name = "ROBOT" status = "have" number = 35.123874 val = (name, status, number) cursor.execute(sql, val) conn.commit() |
실행
# python3 test.py
반응형
'프로그래밍 > Python' 카테고리의 다른 글
파이썬 정규표현식을 이용한 문자 치환하기 (0) | 2021.07.05 |
---|---|
파이썬 show() 로 출력되는 화면을 이미지 파일(png, pdf)로 저장하기 (0) | 2021.07.05 |
[에러] AttributeError: 'DataFrame' object has no attribute 'split' (0) | 2021.06.16 |
Python 숫자 세자리마다 콤마 입력하기 (0) | 2021.06.15 |
파이썬에서 텔레그램 메세지 보내기 (0) | 2021.06.14 |
댓글()