QSqlQuery query;
QString queryString = "SELECT * FROM " + parameter3->toAscii() + " WHERE " + parameter1->toAscii() + " = \"" + parameter2->toAscii() + "\"";
bool retX = query.exec(queryString);
above code when bundled as an application returns true on the machine it has been created. it returns false on other machines. how is it possible to run this successfully on all machines. could it be a network, permission issue. help needed.
Brgds,
kNish