非常有用的,上位机软件,免费使用,无需注册。
2022-03-09 10:55:49 15.46MB 上位机 串口 数据库 数据管理
1
实现串口与数据库相连,通过串口接收到的数据放到数据库中
2021-12-08 19:53:12 76.47MB QT 串口 数据库
1
void Widget::Select() //查询 { QString name = ui->lineEdit->text(); model->setFilter(QObject::tr("id = '%1'").arg(name)); //根据姓名进行筛选 model->select(); //显示结果 } void Widget::Delect() //删除当前行 { int curRow = ui->tableView->currentIndex().row(); //获取选中的行 model->removeRow(curRow); //删除该行 int ok = QMessageBox::warning(this,tr("删除当前行!"),tr("你确定" "删除当前行吗?"), QMessageBox::Yes,QMessageBox::No); if(ok == QMessageBox::No) { model->revertAll(); //如果不删除,则撤销 } else model->submitAll(); //否则提交,在数据库中删除该行 } void Widget::Add() //插入记录 { int rowNum = model->rowCount(); //获得表的行数 int id = 10; model->insertRow(rowNum); //添加一行 model->setData(model->index(rowNum,0),id); //model->submitAll(); //可以直接提交 } void Widget::Back() //返回全表 { model->setTable("student"); //重新关联表 model->setHeaderData(0, Qt::Horizontal, "Time"); model->setHeaderData(1, Qt::Horizontal, "Temperature"); model->select(); //这样才能再次显示整个表的内容 } void Widget::Amend() //提交修改 { model->database().transaction(); //开始事务操作 if (model->submitAll()) { model->database().commit(); //提交 } else { model->database().rollback(); //回滚 QMessageBox::warning(this, tr("tableModel"), tr("数据库错误: %1").arg(model->lastError().text())); } } void Widget::Get_time() { QString string; QTime current_time = QTime::currentTime(); int hour = current_time.hour(); int minute = current_time.minute(); int second = current_time.second(); // int msec = current_time.msec(); string=QString("%1").arg(hour)+":"+QString("%1").arg(minute) +":"+QString("%1").arg(second); ui->Receive->append(string); //qDebug() insertRow(rowNum); //添加一行 model->setData(model->index(rowNum,0),string)
2021-12-08 19:37:10 1.84MB QT串口数据库
1
资源分有点多的,但是值得,免费的源代码程序、文档说明等。物联网专业现在吵得很火,我也是其中的一位学员,这是我写的一个小程序,对于学习物联网的朋友们来说,这个是常常要用到的,也是遇到的,包括了串口数据的接收、RFID卡读写操作,以及数据库的增加、修改、删除、定时器的使用、还有一个数据库,数据库的建立、表的数据操作等。今天给大家分享这一个小程序,与大家共同学习,有兴趣的或不懂的可以加我的扣扣1647294495,我很乐意跟大家一起学习,一起进步。
2019-12-21 21:28:20 2.81MB 物联网 RFID 串口 数据库
1
JAVA串口助手接收串口来的数据,并将数据解析存储入MySQL数据库中,在使用前串口需要有设备,同时自己创建数据库与数据表,见README
2019-12-21 21:12:23 529KB 串口,数据库
1
自己编写的一个Qt的工程,作为例子,用C++写的,操作MySQL数据库和串口
2019-12-21 20:06:00 9KB qt 串口 数据库
1