python 은 pymysql 모듈 을 사용 하여 MySQL 을 조작 합 니 다.
import pymysql
import tkinter as tk
conn = pymysql.connect(host='localhost', user='root', passwd='root', db='okzl', charset='utf8')
master = tk.Tk()
master.title(" ")
master.geometry('350x300')
tk.Label(master, text='cName').place(x=30,y=10)
tk.Label(master, text='address').place(x=30,y=40)
tk.Label(master, text='linkman').place(x=30,y=70)
tk.Label(master, text='linkPhone').place(x=30,y=100)
tk.Label(master, text='credit').place(x=30,y=130)
tk.Label(master, text='remark').place(x=30,y=160)
in1=tk.Entry(master, width=30).place(x=100,y=10)
in2=tk.Entry(master, width=30).place(x=100,y=40)
in3=tk.Entry(master, width=30).place(x=100,y=70)
in3=tk.Entry(master, width=30).place(x=100,y=100)
in3=tk.Entry(master, width=30).place(x=100,y=130)
in3=tk.Entry(master, width=30).place(x=100,y=160)
def insert():
cur = conn.cursor() #
sql1 = "insert into pro(cName,address,linkman,linkPhone,credit,remark) values(%s,%s,%s,%s,%s,%s)"
temp2 = ( )
cur.execute(sql1, temp2)
conn.commit()
cur.close()
tk.Button(master,text=' ',width=8,command=insert).place(x=140,y=220)
master.mainloop()
conn.close()
데이터 삽입 성공
인 스 턴 스 2:표 의 모든 데 이 터 를 가 져 옵 니 다.
import pymysql
conn = pymysql.connect(host='localhost', user='root', passwd='root', db='okzl', charset='utf8')
cur = conn.cursor()
cur.execute('select * from pro')
data = cur.fetchall()
cur.close()
print(data)
conn.close()
인 스 턴 스 3:cName 에 따라 모호 한 검색
import pymysql
import tkinter as tk
conn = pymysql.connect(host='localhost', user='root', passwd='root', db='okzl', charset='utf8') #
master = tk.Tk()
master.title(" ")
master.geometry('350x300')
e = tk.Entry(master)
e.pack(padx=20, pady=20)
def tosearch():
cur = conn.cursor()
temp2 = (e.get(), "%" + e.get() + "%")
cur.execute("select * from pro where cName like %s or cName like %s ", temp2)
data = cur.fetchall()
cur.close()
print(data)
tk.Button(master, text=' ', width=8, command=tosearch).pack(padx=20, pady=50)
master.mainloop()
conn.close()
실례 4:데이터 수정
데이터 베 이 스 를 자동 으로 생 성 하 는 id 에 따라 목 표를 확인 하고 데 이 터 를 수정 합 니 다.
import pymysql
import tkinter as tk
conn = pymysql.connect(host='localhost', user='root', passwd='root', db='okzl', charset='utf8')
master = tk.Tk()
master.title(" ")
master.geometry('350x300')
tk.Label(master, text='cName').place(x=30,y=10)
tk.Label(master, text='address').place(x=30,y=40)
tk.Label(master, text='linkman').place(x=30,y=70)
tk.Label(master, text='linkPhone').place(x=30,y=100)
tk.Label(master, text='credit').place(x=30,y=130)
tk.Label(master, text='remark').place(x=30,y=160)
tk.Label(master, text=' id').place(x=30,y=190)
in1=tk.Entry(master, width=30)
in1.place(x=100,y=10)
in2=tk.Entry(master, width=30)
in2.place(x=100,y=40)
in3=tk.Entry(master, width=30)
in3.place(x=100,y=70)
in4=tk.Entry(master, width=30)
in4.place(x=100,y=100)
in5=tk.Entry(master, width=30)
in5.place(x=100,y=130)
in6=tk.Entry(master, width=30)
in6.place(x=100,y=160)
in7=tk.Entry(master, width=30)
in7.place(x=100,y=190)
def update():
cur = conn.cursor() #
sql1 = "update pro set cName=%s, address=%s,linkman=%s,linkPhone=%s,credit=%s,remark=%s where id=%s"
temp2 = (in1.get(),in2.get(),in3.get(),in4.get(),in5.get(),in6.get(),in7.get())
cur.execute(sql1, temp2)
conn.commit()
cur.close()
tk.Button(master,text=' ',width=8,command=update).place(x=140,y=220)
master.mainloop()
conn.close()
인 스 턴 스 5:데이터 삭제
여 기 는 id 에 의 해 삭 제 됩 니 다.
sql1 = "delete from pro where id=%s"
temp1 = str(n)
cur.execute(sql1, temp1)
conn.commit()
cur.close()
상기 사례 는 모두 기초 로 조작 예 를 들 어 실제 작업 에서 수요 에 따라 프로그램 과 sql 문 구 를 변경 하여 목표 효 과 를 실현 할 수 있다.이상 은 python 이 pymysql 모듈 을 사용 하여 MySQL 을 조작 하 는 상세 한 내용 입 니 다.python 이 pymysql 로 MySQL 을 조작 하 는 것 에 대한 자 료 는 다른 관련 글 을 주목 하 십시오!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.