Qsqlquery problem [Solved]
C++ Gurus
3
Posts
2
Posters
2.1k
Views
1
Watching
-
wrote on 24 Apr 2012, 01:15 last edited by
@
void company_db::delete_item(int itmn)
{
QSqlQuery dlt_itm("delete from item where item_no= ?? ");
}
@
how should i compare itemn(int) to item_no(int ) attribute of item table ? Because i have to pass itmn as a string within QsqulQuery constructor ?? -
wrote on 24 Apr 2012, 02:15 last edited by
that was very simple Ques. i got the ans
@
void company_db::delete_item(int itm_no)
{
QSqlQuery del_item;
del_item.prepare("delete from item where item_no=(:tag)");
del_item.bindValue(":tag",itm_no);
del_item.exec();
}
@
sry for disturbance ... -
wrote on 24 Apr 2012, 05:38 last edited by
hi,
pls set the thread to solved.
edit the topic header and write [Solved] in front of it!
br
3/3