這篇文章將為大家詳細(xì)講解有關(guān)python和sqlite3數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)簡(jiǎn)單登陸注冊(cè)功能,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
網(wǎng)站設(shè)計(jì)制作過(guò)程拒絕使用模板建站;使用PHP+MYSQL原生開(kāi)發(fā)可交付網(wǎng)站源代碼;符合網(wǎng)站優(yōu)化排名的后臺(tái)管理系統(tǒng);網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)收費(fèi)合理;免費(fèi)進(jìn)行網(wǎng)站備案等企業(yè)網(wǎng)站建設(shè)一條龍服務(wù).我們是一家持續(xù)穩(wěn)定運(yùn)營(yíng)了10多年的創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)公司。
#coding=utf8 #登錄注冊(cè)功能齊了 import wx import sqlite3 class MyFrame(wx.Frame): def __init__(self): wx.Frame.__init__(self, None, -1, 'DB EXAMPLE',pos=wx.DefaultPosition,size=(300, 150)) panel = wx.Panel(self, -1) usernameLabel = wx.StaticText(panel, -1, "用戶名:")#設(shè)置用戶名Label self.usernameText = wx.TextCtrl(panel, -1, "",size=(175, -1))#設(shè)置輸入用戶名的文本框 self.usernameText.SetInsertionPoint(0) pwdLabel = wx.StaticText(panel, -1, "密碼:")#設(shè)置密碼的Label self.pwdText = wx.TextCtrl(panel, -1, "", size=(175, -1),style=wx.TE_PASSWORD)#設(shè)置密碼的文本框 loginButton=wx.Button(panel,-1,"登錄")#登錄按鈕 exitButton=wx.Button(panel,-1,"退出")#退出按鈕 registerButton=wx.Button(panel,-1,"注冊(cè)") sizer = wx.FlexGridSizer(cols=2, hgap=6, vgap=6)#sizer設(shè)置 sizer.AddMany([usernameLabel, self.usernameText, pwdLabel, self.pwdText,loginButton,exitButton,registerButton])#把它們都安在sizer里 panel.SetSizer(sizer) self.Bind(wx.EVT_BUTTON, self.OnLogIn, loginButton)#登錄按鈕綁定事件 self.Bind(wx.EVT_BUTTON, self.OnCloseWindow, exitButton)#退出按鈕綁定事件 self.Bind(wx.EVT_BUTTON, self.OnRegister, registerButton)#注冊(cè)按鈕綁定事件 # self.buildingDB()#創(chuàng)建數(shù)據(jù)庫(kù)和表,此語(yǔ)句只運(yùn)行第一次,之后將其注釋掉 def OnLogIn(self,event):#登錄方法 self.username=self.usernameText.GetValue() self.password=self.pwdText.GetValue() username=str(self.username.strip()) conn=sqlite3.connect('db01') cur=conn.cursor() cur.execute("SELECT password FROM table01 WHERE username='%s'"% username) t=cur.fetchone()[0] print t if str(self.password)==str(t): print 'Password is correct!' self.Maximize(True)#窗口最大化,意思意思主界面 else: print 'failed' def OnCloseWindow(self,event):#關(guān)閉窗口 self.Close() # def loginmethod(self): # # pass def buildingDB(self):#建立數(shù)據(jù)庫(kù) conn=sqlite3.connect("db01") cur=conn.cursor() cur.execute(""" CREATE TABLE table01(username text,password text, realname text,account text,workingdept text,phonenumber text) """) cur.execute("""INSERT INTO table01 values('zhangsan','123','zhangsan','','','')""") cur.execute("""INSERT INTO table01 values('lisi','123','zhangsan','','','')""") cur.execute("""INSERT INTO table01 values('wangwu','123','zhangsan','','','')""") conn.commit() cur.execute("""SELECT username FROM table01 WHERE username='zhangsan'""") # p=cur.fetchone() # print p cur.close() def OnRegister(self,event):#注冊(cè)方法 self.username=self.usernameText.GetValue() self.password=self.pwdText.GetValue() conn=sqlite3.connect("db01") cur=conn.cursor() cur.execute("INSERT INTO table01 VALUES('%s','%s','','','','')"%(self.username,self.password)) conn.commit() print "Registered successfully!" cur.close() if __name__ == '__main__': app = wx.PySimpleApp() frame = MyFrame() frame.Show() app.MainLoop()
關(guān)于python和sqlite3數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)簡(jiǎn)單登陸注冊(cè)功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。