Python 3.6 Mysql 데이터 베 이 스 를 간단하게 조작 합 니 다.
pymysql 설치
참고https://github.com/PyMySQL/PyMySQL/
pip install pymsql
실례 1
import pymysql
#
# , , ,
conn = pymysql.connect(host='127.0.0.1', user='root', passwd='123456', db='demo')
#
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
#
effect_row = cursor.execute("select * from course")
print(effect_row)
#
result = cursor.fetchall()
result = cursor.fetchone() #
result = cursor.fetchone() # ( )
# cursor.scroll(-1, mode='relative') #
# cursor.scroll(0,mode='absolute') #
# ,
conn.commit()
#
cursor.close()
#
conn.close()
실례 2
import pymysql
#
conn = pymysql.connect(host='127.0.0.1', user='root', passwd='123456', db='demo')
#
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
# %s
effect_row = cursor.execute("insert into course(cou_name,time) values(%s,%s)", ("Engilsh", 100))
print(effect_row)
conn.commit()
cursor.close()
conn.close()
실례 3
import pymysql.cursors
# Connect to the database
connection = pymysql.connect(host='localhost',
user='user',
password='passwd',
db='db',
charset='utf8mb4',
cursorclass=pymysql.cursors.DictCursor)
try:
with connection.cursor() as cursor:
# Create a new record
sql = "INSERT INTO `users` (`email`, `password`) VALUES (%s, %s)"
cursor.execute(sql, ('[email protected]', 'very-secret'))
# connection is not autocommit by default. So you must commit to save
# your changes.
connection.commit()
with connection.cursor() as cursor:
# Read a single record
sql = "SELECT `id`, `password` FROM `users` WHERE `email`=%s"
cursor.execute(sql, ('[email protected]',))
result = cursor.fetchone()
print(result)
finally:
connection.close()
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python 3.6 의 py 파일 압축 생 성 exe 를 자세히 설명 합 니 다.원문 에서 언급 한 요점: 1.Python 버 전 32 비트(파일 이름 은 python-3.6.1.exe) 2.모든 모듈 설치(원문 블 로 거 는 openpyxl 을 사용 하고 저 는 urllib 의 request\...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.