Qsqlquery problem [Solved]
C++ Gurus
3
Posts
2
Posters
2.1k
Views
1
Watching
-
@
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 ?? -
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 ...