PyQt5: chapter9-创建数据库表

本文介绍了一个使用Python和PyQt5创建GUI应用程序的方法,该程序允许用户输入数据库名称、表格名称及列名等信息,通过GUI界面自动生成SQLite数据库及其表格。用户可以添加列并指定数据类型,最终创建完整的数据库表格。
摘要由CSDN通过智能技术生成

实例

  1. 创建基于Dialog without Buttons模板窗口
  2. 添加五个Label,三个LineEdit,一个ComboBox,两个PushButton部件
  3. 设定四个Label部件的text为 Enter database name, Enter table name, Column Name, Data Type
  4. 设定Push Button的text为Add Column ,Create Table
  5. 设定Line Edit的objectName为lineEditDBName, lineEditTableName, lineEditColumnName
  6. 设定ComboBox的objectName为ComboBoxDataType
  7. 设定PushButton的objectName为pushButtonAddColumn and pushButtonCreateTable
  8. 设定第五个Label的objectName为labelResponse
  9. 保存为demoCreateTable.ui
  10. 使用pyuic生成demoCreateTable.py
  11. 创建callCreateTable.py,代码如下
import sys,sqlite3
from PyQt5.QtWidgets import QDialog,QApplication
from sqlite3 import Error
from cookbook_200503.demoCreateTable import *

tabledefinition=""
class MyForm(QDialog):
    def __init__(self):
        super().__init__()
        self.ui=Ui_Dialog()
        self.ui.setupUi(self)
        self.ui.pushButtonCreateTable.clicked.connect(self.createTable)
        self.ui.pushButtonAddColumn.clicked.connect(self.addColumns)
        self.show()
    def addColumns(self):
        global tabledefinition
        if tabledefinition=="":
            tabledefinition="CREATE TABLE IF NOT EXISTS "+self.ui.lineEditTableName.text()+" ("+self.ui.lineEditColumnName.text()+" "+self.ui.comboBoxDataType.itemText(self.ui.comboBoxDataType.currentIndex())
        else:
            tabledefinition += "," + self.ui.lineEditColumnName.text() + " " + self.ui.comboBoxDataType.itemText(self.ui.comboBoxDataType.currentIndex())
            self.ui.lineEditColumnName.setText("")
            self.ui.lineEditColumnName.setFocus()
    def createTable(self):
        global tabledefinition
        try:
            conn=sqlite3.connect(self.ui.lineEditDBName.text()+".db")
            self.ui.labelResponse.setText("Database is connected")
            c=conn.cursor()
            tabledefinition+=");"
            c.execute(tabledefinition)
            self.ui.labelResponse.setText("Table is successfully created")
        except Error as e:
            self.ui.labelResponse.setText("Error in creating table")
        finally:
            conn.close()
if __name__=="__main__":
    app=QApplication(sys.argv)
    w=MyForm()
    w.show()
    sys.exit(app.exec())

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值