1.连接
可以参考博客
2.常用操作实例
这里都是做MaoExpress(软件设计课作业)的后端代码片段
需要注意
在操作时记住用Navicat观察服务器数据库上的数据是否更新成功。
2.1查询
查询userID是否与已有ID重复
QSqlQuery result = db.exec(" select * from SuperUserTable");
QString userIdValue;
QString pswValue;
QString nameValue;
while(result.next()){
userIdValue=result.value("userID").toString();
nameValue=result.value("_name").toString();
pswValue=result.value("_password").toString();
if(userID==userIdValue){
isRedundant=true;
}<