QSqlQuery query;
QString querytime="SELECT CREATE_TIME FROM information_schema.tables WHERE TABLE_SCHEMA ='test_150' AND TABLE_NAME ='"+table+"'";
if(query.exec(querytime)){
cout<<"TIME STAMP>>>>>"<<query.value(0).toString().toStdString()<<endl;
}
我已经使用上面的代码从 QT 中的 MYSQL 检索表的创建时间。但它不起作用。我在 MYSQL 前端尝试了这个查询,它在那里正常工作。这段代码有什么错误?