在PyQt5中,可以使用QtSql模塊來(lái)連接數(shù)據(jù)庫(kù)并進(jìn)行數(shù)據(jù)存儲(chǔ)和檢索操作。下面是一個(gè)簡(jiǎn)單的示例,演示了如何使用SQLite數(shù)據(jù)庫(kù)進(jìn)行數(shù)據(jù)存儲(chǔ)和檢索:
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QPushButton, QLabel, QLineEdit, QMessageBox
from PyQt5.QtSql import QSqlDatabase, QSqlQuery
class DatabaseExample(QWidget):
def __init__(self):
super().__init__()
self.setWindowTitle('Database Example')
layout = QVBoxLayout()
self.name_label = QLabel('Name:')
self.name_edit = QLineEdit()
self.save_button = QPushButton('Save')
self.save_button.clicked.connect(self.save_data)
self.retrieve_button = QPushButton('Retrieve')
self.retrieve_button.clicked.connect(self.retrieve_data)
layout.addWidget(self.name_label)
layout.addWidget(self.name_edit)
layout.addWidget(self.save_button)
layout.addWidget(self.retrieve_button)
self.setLayout(layout)
self.db = QSqlDatabase.addDatabase('QSQLITE')
self.db.setDatabaseName('data.db')
if not self.db.open():
QMessageBox.critical(None, 'Error', 'Could not open database')
def save_data(self):
name = self.name_edit.text()
query = QSqlQuery()
query.prepare('INSERT INTO users (name) VALUES (?)')
query.bindValue(0, name)
if not query.exec():
QMessageBox.critical(None, 'Error', 'Could not save data')
else:
QMessageBox.information(None, 'Success', 'Data saved successfully')
def retrieve_data(self):
query = QSqlQuery()
query.prepare('SELECT name FROM users')
if query.exec():
while query.next():
name = query.value(0)
print(name)
else:
QMessageBox.critical(None, 'Error', 'Could not retrieve data')
if __name__ == '__main__':
app = QApplication(sys.argv)
window = DatabaseExample()
window.show()
sys.exit(app.exec_())
在上面的示例中,我們創(chuàng)建了一個(gè)簡(jiǎn)單的GUI應(yīng)用程序,其中包含一個(gè)文本框和兩個(gè)按鈕。用戶可以輸入姓名并點(diǎn)擊“Save”按鈕將數(shù)據(jù)保存到SQLite數(shù)據(jù)庫(kù)中。用戶還可以點(diǎn)擊“Retrieve”按鈕檢索數(shù)據(jù)庫(kù)中的所有數(shù)據(jù)。
注意:在運(yùn)行這個(gè)示例之前,需要安裝PyQt5和sqlite3模塊。可以使用以下命令來(lái)安裝這些模塊:
pip install PyQt5
pip install pysqlite3
在實(shí)際應(yīng)用中,可以根據(jù)需要修改數(shù)據(jù)庫(kù)連接信息和SQL查詢語(yǔ)句來(lái)適應(yīng)不同的場(chǎng)景。