Python MySQL connect 썸네일형 리스트형 MySQL 연결 Python 코드 샘플 아래와 같이 MySQL에 연결하여 테이블 "departments" 데이터를 조회하는 Python 샘플 코드입니다. 데이터를 가져오는 부분을 함수 형태로 썼습니다. import pymysql dbhost = '132.145.201.247' dbuser = 'root' dbpassword = 'Welcome123!@' dbname = 'employees' connection = pymysql.connect(host=dbhost, user=dbuser, password=dbpassword, db=dbname) def list_data(): try: cursor = connection.cursor() sql = "select * from departments" cursor.execute(sql) except E.. 더보기 이전 1 다음