Python MySQL 연결 썸네일형 리스트형 OCI API Gateway와 Function을 이용한 서버리스 웹 어플리케이션 샘플 - #3 DB 구성 및 Function 코드 준비 총 네개의 시리즈로 OCI API Gateway와 Function을 이용한 서버리스 웹 어플리케이션 샘플 구성 방법을 살펴보겠습니다. 이전 글: 2022.05.23 - [Cloud/Oracle Cloud Infrastructure (OCI)] - OCI API Gateway와 Function을 이용한 서버리스 웹 어플리케이션 샘플 - #2 OCI Function 개발 환경 구성 MySQL 설치/설정 어플리케이션과 연결할 데이터베이스를 설치합니다. yum 명령으로 MySQL을 설치합니다. root 계정으로 수행했습니다. [opc@demo ~]$ sudo -s [root@demo opc]# yum install mysql-community-server -y ... Installed: mysql-communi.. 더보기 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 다음