행위

"Python에서 MariaDB 접속 및 쿼리 실행하기 만들기"의 두 판 사이의 차이

라이언의 꿀팁백과

(새 문서: Python 3.8 이상 mysql.connector 가 설치되었다고 가정한다. <syntaxhighlight lang="python3" line="1"> import mysql.connector connection = mysql.connector.connect( host="DB주소", user="접속계정", password="비밀번호", database="데이터베이스명", ) cursor = connection.cursor() cursor.execute("SELECT user_login, display_name FROM wp_users") for row in cursor: user_login, display_name = row print(user_login, disp...)
 
 
1번째 줄: 1번째 줄:
Python 3.8 이상 mysql.connector 가 설치되었다고 가정한다.
Python 3.8 이상 mysql.connector 가 설치되었다고 가정한다.
 
<br><br>
<syntaxhighlight lang="python3" line="1">
<syntaxhighlight lang="python3" line="1">
import mysql.connector
import mysql.connector

2023년 1월 7일 (토) 22:15 기준 최신판

Python 3.8 이상 mysql.connector 가 설치되었다고 가정한다.

import mysql.connector

connection = mysql.connector.connect(
        host="DB주소",
        user="접속계정",
        password="비밀번호",
        database="데이터베이스명",
)

cursor = connection.cursor()

cursor.execute("SELECT user_login, display_name FROM wp_users")

for row in cursor:
    user_login, display_name = row
    print(user_login, display_name)

cursor.close()
connection.close()