이 글에서는 주로 Python 데이터베이스 연결 방법과 데이터 삽입 방법을 자세히 설명합니다. 관심 있는 친구들은 참고할 수 있습니다
. 데이터베이스 연결 설정
def create_db_connect(): """ brief info for: create_db_connect 建立数据库链接 Args: Return: Raise: """ conn = MySQLdb.connect(host = "rm-uf6wz3f7kb8sx983zo.mysql.rds.aliyuncs.com", user = "pv_cms", passwd = "pv_cms@123", port = 3306, charset = "utf8", db = "pv_interaction_bigdata") return conn
데이터 삽입:
def insert_to_info(conn): cursor = conn.cursor() sql = '''insert into info values(%s,%s)''' l = [['liza','mary'],['dh','lxy']]#必须是list cursor.executemany(sql,l)#执行多条插入数据操作 conn.commit()# 不执行不能插入数据 conn.close() def insert_into_info(conn): cursor = conn.cursor() s ql = '''insert into info values(%s,%s)''' l = ('lisa','mary')#必须是tuple cursor.execute(sql,l)#插入数据操作 conn.commit()# 不执行不能插入数据 conn.close()
[관련 권장 사항]
3. Boolean Education Yanshi MySQL 소개 영상 튜토리얼
위 내용은 Python이 데이터베이스 연결을 설정하고 데이터를 삽입하는 방법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!