Hi,
Is there some example how to use prepared statement for select objects from SQLite database?
For insertion I used TSQLStatement + SetString/SetInt functions.
But all examples with “select something” contain “raw” sql command passed as string,
Hi,
the problem is that all those tutorials looks like
TString query="select something from table";
TQSLresult *res = sql->Query(query)
... do stuff...
Whereas I would like to have something line TSQLStatement where I have SetInt SetString methods. I don’t see option like passing statement to database and get TSQLResult.