1 Star 0 Fork 0

GOOD-AN/Bookstore-Management-System

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
quest.cpp 691 Bytes
一键复制 编辑 原始数据 按行查看 历史
GOOD-AN 提交于 2021-07-07 11:54 . upload files
#include "quest.h"
#include "main.h"
#include <QDialog>
#include <QSql>
#include <QSqlError>
#include <QSqlDatabase>
#include <QSqlQuery>
#include <QDebug>
#include <QMessageBox>
#include <QPushButton>
QUEST::QUEST(QWidget *parent)
: QDialog(parent)
{
setWindowTitle("存入库存");
}
QUEST::~QUEST()
{
}
bool QUEST::qusetuser(QString username,QString password)
{
QSqlQuery query(main::database); //查询Administrator_Info表并输出
query.exec("SELECT ID,PASSWORD FROM Administrator_Info");
while(query.next())
{
if(query.value(0).toInt()==username.toInt()&&query.value(1).toInt()==password.toInt())
return true;
}
return false;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/GOOD-AN/Bookstore-Management-System.git
git@gitee.com:GOOD-AN/Bookstore-Management-System.git
GOOD-AN
Bookstore-Management-System
Bookstore-Management-System
main

搜索帮助