//起始时间
QString strBegTime = ui.BegdateTimeEdit->text();
//结束时间
QString strEndTime = ui.EnddateTimeEdit->text();
//搜索命令
QString strQuery = "select * from Log where DateTime >= \'" + strBegTime + "\' and DateTime <= \'" + strEndTime +"\'";
m_QueryModel->setQuery(strQuery);
QT sqlite数据库 日期为变量时,如何按时间筛选数据库中的数据
原文作者:WJsuperrunner
原文地址: https://blog.csdn.net/superrunner_wujin/article/details/104377387
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/superrunner_wujin/article/details/104377387
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。