Hi there!
Why can't I use Query object twice?
(I mean something like this:
Query query = con.create_Query();
query << " SOME BIG QUERY ";
Result_Store = query.store();
...
query << "insert into stat(name) valuse('" << new_name << "') where
id=" << ID << std::ends;
// makes exception 'couse query.preview() shows "NEW QUERY+LAST OF SOME
BIG QUERY"
!!! I want Query object to clear after making query to mySQL !!!
|