您好,登錄后才能下訂單哦!
本文實例為大家分享了由Python編寫的MySQL管理工具的具體代碼,供大家參考,具體內容如下
import pymysql import pandas as pd from tkinter import Label,StringVar,Entry,Tk,Button from tkinter.simpledialog import askstring def Entry_address(): #輸入數據庫地址 root=Tk() l1=Label(root,text='服務器:').grid(column=0,row=0) text1=StringVar() Entry(root,textvariable=text1).grid(column=1,row=0) l2=Label(root,text='用戶名:').grid(column=0,row=1) text2=StringVar() Entry(root,textvariable=text2).grid(column=1,row=1) l3 = Label(root, text='密碼').grid(column=0, row=2) text3 = StringVar() Entry(root, textvariable=text3,show='*').grid(column=1, row=2) l4 = Label(root, text='數據庫').grid(column=0, row=3) text4 = StringVar() Entry(root, textvariable=text4).grid(column=1, row=3) Button(root,text='確定',command=lambda:root.destroy()).grid(column=1,row=4) root.mainloop() return text1.get(),text2.get(),text3.get(),text4.get() def connect_database(): #連接數據庫 h,u,p,d=Entry_address() connect = pymysql.connect(host=h, user=u, password=p, db=d) cursor = connect.cursor(cursor=pymysql.cursors.DictCursor) return cursor def select_data(): #操作數據 cursor=connect_database() # query='insert into person (fname,lname) values(%s,%s)' # values=('lu','Cachy')##元組只能存儲單一數據類型 # cursor.execute(query,values) root1=Tk() root1.withdraw() query=askstring('hello','輸入SQL語句') root1.destroy() root1.mainloop() cursor.execute(query) cursor.connection.commit() #獲取權限 a = cursor.fetchall() #從游標中取出數據 cursor.close() c=pd.DataFrame(a) print(c) if __name__=='__main__': select_data()
以上所述是小編給大家介紹的由Python編寫的MySQL管理工具詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。