PyQt5: chapter9-在指定的数据库表中插入行

实例

  1. 创建基于Dialog without Buttons模板窗口
  2. 添加五个Label,四个LineEdit,一个PushButton部件
  3. 设定四个Label的text为Enter database name, Enter table name, Email Address, Password
  4. 设定PushButton的text为Insert Row
  5. 设定四个Line Edit的object Name为lineEditDBName, lineEditTableName, lineEditEmailAddress,lineEditPassword
  6. 设定PushButton的objectName为pushButtonInsertRow
  7. 设定第五个Label的objectName为labelResponse
  8. 选择Line Edit(password)的echo Mode为Password,替代默认的Normal
  9. 保存为demoInsertRowsInTable.ui
  10. 使用pyuic生成demoInsertRowsInTable.py
  11. 创建callInsertRows.py,代码如下
import sys,sqlite3
from PyQt5.QtWidgets import QDialog,QApplication
from sqlite3 import Error
from cookbook_200503.demoInsertRowsInTable import *

class MyForm(QDialog):
    def __init__(self):
        super().__init__()
        self.ui=Ui_Dialog()
        self.ui.setupUi(self)
        self.ui.pushButtonInsertRow.clicked.connect(self.InsertRows)
        self.show()
    def InsertRows(self):
        sqlStatement="INSERT INTO "+self.ui.lineEditTableName.text()+" VALUES('"+self.ui.lineEditEmailAddress.text()+"','"+self.ui.lineEditPassword.text()+"')"
        try:
            conn=sqlite3.connect(self.ui.lineEditDBName.text()+".db")
            with conn:
                cur=conn.cursor()
                cur.execute(sqlStatement)
                self.ui.labelResponse.setText("Row successfully inserted")
        except Error as e:
            self.ui.labelResponse.setText("Error in inserting row")
        finally:
            conn.close()
if __name__=="__main__":
    app=QApplication(sys.argv)
    w=MyForm()
    w.show()
    sys.exit(app.exec())

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值