#include "mysqlserver.h"
SqlServer::SqlServer()
{
}
void SqlServer::InitSql(){
//添加SqlServer数据库
db=QSqlDatabase::addDatabase("QODBC");
qDebug()<<"ODBC driver?"<<db.isValid();
QString dsn=QString::fromLocal8Bit("QTDSN");
//连接数据库
db.setHostName("127.0.0.1");
/*
最初这里我和我的搭档都想错了,认为对于不同的用户,应该分类成拥有不同权限的角色,
这样每次一个用户登录时,就直接让这个用户操作数据库,因为对这个用户分配了权限,
所以这个用户对某些操作不能实现,但是这个想法从一开始就是错的,还是对用户权限这里
理解的不到位,用户权限是为了给操作数据库的程序员们设置的,而不是给使用我们系统的
用户使用的,使用我们系统的用户在我们这里只是一条数据,而不是拥有操作数据库的“程序员”,
对于用户权限的控制应该体现在界面上,如果用户没有删除数据这个功能,那么用户的界面上就
不会显示删除这个按钮,这样用户就不除数据了。
*/
//数据库用户名
db.setUserName("sa");
//数据库密码
db.setPassword("123456");
//使用的数据库名称
db.setDatabaseName(dsn);
if(db.open()){//数据库打开成功
qDebug()<<"Database connected successfully!";
query=new QSqlQuery(db);
query2=new QSqlQuery(db);
return;
}
else{//数据库打开失败
qDebug()<<"Database connected failed!";
qDebug()<<db.lastError().text();
return;
}
}
int SqlServer::checkLogin(QString userID, QString userPwd){
qDebug()<<"userID:"<<userID<<"userPwd:"<<userPwd;
QString str=QString("select UserType from UserTable Where UserID='%1' And UserPwd='%2'").arg(userID).arg(userPwd);
query->exec(str);
int num=query->numRowsAffected();
query->next();
qDebug()<<"num:"<<num;
if(num!=1){
return -1;
}
else{
qDebug()<<"userType:"<<query->value(0).toInt();
return query->value(0).toInt();
}
}
user_simple_package SqlServer::FindUserSimpleInfo(QString userID,int userType){
user_simple_package userSimplePackage;
qDebug()<<"userID"<<userID;
if(userType==0){//如果是学生
QString str=QString("select StuName from StudentTable where StuID='%1'").arg(userID);
query->exec(str);
int num=query->numRowsAffected();
qDebug()<<"num:"<<num;
query->next();
strncpy(userSimplePackage.userID,userID.toLatin1().data(),10);
qDebug()<<query->value(0).toString();
strncpy(userSimplePackage.userName,query->value(0).toString().toLocal8Bit().data(),20);
qDebug()<<"StuName:"<<userSimplePackage.userName;
}
else{
}
return userSimplePackage;
}
user_full_package SqlServer::FindUserFullInfo(QString userID, int userType){//用户完整信息包
user_full_package userFullPackage;
qDebug()<<"userID"<<userID;
if(userType==0){
QString str=QString("select * from stuFullInfo where StuID='%1'").arg(userID);
query->exec(str);
int num=query->numRowsAffected();
qDebug()<<"num:"<<num;
query->next();
strncpy(userFullPackage.userInstituteName,query->value("InstitueName").toString().toLocal8Bit().data(),30);
strncpy(userFullPackage.userClassName,query->value("ClassName").toString().toLocal8Bit().data(),30);
strncpy(userFullPackage.userAssistantName,query->value("AssistantName").toString().toLocal8Bit().data(),20);
strncpy(userFullPackage.usermasterName,query->value("MasterName").toString().toLocal8Bit().data(),20);
userFullPackage.userGender=query->value("StuGender").toBool();
strncpy(userFullPackage.userCardID,query->value("StuCardID").toString().toLocal8Bit().data(),20);
QString str1=userFullPackage.userCardID;
strncpy(userFullPackage.userBirthDay,QString(str1.mid(6,8)).toLocal8Bit().data(),10);
userFullPackage.userAge=2018-str1.mid(6,4).toInt();
strncpy(userFullPackage.userNativePlace,query->value("StuNativePlace").toString().toLocal8Bit().data(),50);
strncpy(userFullPackage.userNationality,query->value("StuNationality").toString().toLocal8Bit().data(),50);
}
return userFullPackage;
}
student_course_package* SqlServer::FindStuCourseInfo(QString StuID,int*cont){//学生查看自己选的课程信息
QString str=QString("select * from stuCourseInfo where StuID='%1'").arg(StuID);
query->exec(str);
int num=query->numRowsAffected();
*cont=num;
qDebug()<<"num:"<<num;
student_course_package* studentCoursePackage;
studentCoursePackage =(student_course_package*)malloc(sizeof(student_course_package)*num);
int i=0;
while (query->next()) {
strncpy(studentCoursePackage[i].CourseID,query->value("CourseID").toString().toLocal8Bit().data(),10);
strncpy(studentCoursePackage[i].CourseName,query->value("CourseName").toString().toLocal8Bit().data(),30);
strncpy(studentCoursePackage[i].CourseTypeName,query->value("CourseTypeName").toString().toLocal8Bit().data(),20);
strncpy(studentCoursePackage[i].TchName,query->value("WorkerName").toString().toLocal8Bit().data(),20);
studentCoursePackage[i].CourseCredit=query->value("CourseCredit").toInt();
i++;
}
return studentCoursePackage;
}
student_courseScore_package* SqlServer::FindStuCourseScoreInfo(QString StuID,int *cont){//学生查看自己成绩
QString str=QString("select * from stuCourseInfo where StuID='%1'and Score is not NULL").arg(StuID);
qDebug()<<str;
query->exec(str);
int num=query->numRowsAffected();
*cont=num;
qDebug()<<"num:"<<num;
student_courseScore_package* studentCourseScorePackage;
studentCourseScorePackage=(student_courseScore_package*)malloc(sizeof(student_courseScore_package)*num);
int i=0;
while(query->next()){
strncpy(studentCourseScorePackage[i].CourseID,query->value("CourseID").toString().toLocal8Bit().data(),10);
strncpy(studentCourseScorePackage[i].CourseName,query->value("CourseName").toString().toLocal8Bit().data(),30);
studentCourseScorePackage[i].CourseScore=query->value("Score").toInt();
i++;
qDebug()<<studentCourseScorePackage[i].CourseID<<studentCourseScorePackage[i].CourseName<<studentCourseScorePackage[i].CourseScore;
}
return studentCourseScorePackage;
}
student_course_package* SqlServer::FindStuSelectedCourseInfo(QString StuID, int type, int *cont){
QString str;
if(type==0)//查询全部选修课信息
str=QString("select * from selectedCourseInfo");
else if(type==1)//通识课
str=QString("select * from selectedCourseInfo where courseTypeID='01'");
else if(type==2)//实践课
str=QString("select * from selectedCourseInfo where courseTypeID='02'");
else if(type==3)//英语课
str=QString("select * from selectedCourseInfo where courseTypeID='03'");
else if(type==4)//体育课
str=QString("select * from selectedCourseInfo where courseTypeID='04'");
query->exec(str);
int num=query->numRowsAffected();
*cont=num;
qDebug()<<"num:"<<num;
student_course_package* studentCoursePackage;
studentCoursePackage=(student_course_package*)malloc(sizeof(student_course_package)*num);
int i=0;
while(query->next()){
strncpy(studentCoursePackage[i].CourseID,query->value("CourseID").toString().toLocal8Bit().data(),10);
strncpy(studentCoursePackage[i].CourseName,query->value("CourseName").toString().toLocal8Bit().data(),30);
strncpy(studentCoursePackage[i].CourseTypeName,query->value("CourseTypeName").toString().toLocal8Bit().data(),20);
strncpy(studentCoursePackage[i].TchName,query->value("TeacherName").toString().toLocal8Bit().data(),20);
studentCoursePackage[i].CourseCredit=query->v
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
软件开发设计:PHP、QT、应用软件开发、系统软件开发、移动应用开发、网站开发C++、Java、python、web、C#等语言的项目开发与学习资料 硬件与设备:单片机、EDA、proteus、RTOS、包括计算机硬件、服务器、网络设备、存储设备、移动设备等 操作系统:LInux、IOS、树莓派、安卓开发、微机操作系统、网络操作系统、分布式操作系统等。此外,还有嵌入式操作系统、智能操作系统等。 网络与通信:数据传输、信号处理、网络协议、网络与通信硬件、网络安全网络与通信是一个非常广泛的领域,它涉及到计算机科学、电子工程、数学等多个学科的知识。 云计算与大数据:数据集、包括云计算平台、大数据分析、人工智能、机器学习等,云计算是一种基于互联网的计算方式,通过这种方式,共享的软硬件资源和信息可以按需提供给计算机和其他设备。
资源推荐
资源详情
资源评论
收起资源包目录
Qt学生管理系统.zip (50个子文件)
cm
.gitattributes 66B
StudentManagementServer
protocol.h 4KB
image1.qrc 84B
myserver.cpp 1KB
myserver.h 812B
StudentManagementServer.pro 1KB
1.jpg 7KB
serverthread.cpp 1KB
main.cpp 511B
serverthread.h 475B
mysocket.h 542B
1.bmp 7KB
mysqlserver.h 2KB
mysocket.cpp 14KB
mysqlserver.cpp 20KB
StudentManagementClient
protocol.h 3KB
teacherwindow.ui 12KB
assistantwindow.ui 551B
迅雷.lnk 17KB
grunge-2479783_1920.png 841KB
masterwindow.ui 545B
teacherwindow.cpp 240B
0855995eb242c83608be484b3e3bc603.jpg 109KB
mysocket.ui 6KB
237eadbfc47912d034af69af303ebc28.jpg 45KB
1.jpg 9KB
img.qrc 412B
1.png 17KB
main.cpp 185B
图片2.png 21KB
teacherwindow.h 366B
131b7a5eeab581516471c220f110ed8a.jpg 104KB
assistantwindow.cpp 254B
background-2420782_1920.png 1.51MB
mysocket.h 1KB
131b7a5eeab581516471c220f110ed8a.png 56KB
StudentManagementClient.pro 1KB
background.png 95KB
managerwindow.cpp 16KB
studentwindow.ui 25KB
mysocket.cpp 12KB
masterwindow.cpp 236B
studentwindow.h 1KB
managerwindow.ui 26KB
managerwindow.h 2KB
studentwindow.cpp 12KB
masterwindow.h 359B
assistantwindow.h 382B
torn-2032972_19201.png 810KB
.gitignore 449B
共 50 条
- 1
资源评论
普通网友
- 粉丝: 1w+
- 资源: 1万+
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功