本文介绍了Qsql查询检查qt中是否存在整数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
num是一个整数,PassID也是一个整数
qry.prepare(SELECT * FROM ISSUEPASS WHERE PassID = num);
我需要选择行PassID匹配的地方
我收到错误无法获取行没有查询
我尝试过:
qry.prepare(SELECT * FROM ISSUEPASS WHERE PassID = num);
解决方案
num is a integer and PassID also a integer
qry.prepare("SELECT * FROM ISSUEPASS WHERE PassID =num");
I need to select the row where the PassID matches
Iam getting error "unable to fetch row No query"
What I have tried:
qry.prepare("SELECT * FROM ISSUEPASS WHERE PassID =num");
解决方案
这篇关于Qsql查询检查qt中是否存在整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!