On Wed, Nov 10, 2004 at 09:56:05PM +0100, cgifalco wrote:
> here is the snippet of the code from the dbinfo.cc:
> try {
> ...
> Query query = con.query();
> query << "show databases";
> Result res = query.store();
> ...
> it works OK, but when you then write
> ...
try query.reset(); here
There have been reports that this also doesn't work, but I haven't
reproduced it. reset() works fine for me.
> query << "show tables"; //here could be another query string
> res = query.store();
> ...
> }
> catch (BadQuery& er)
> ...
> programm issues error message
> catch (BadQuery& er)
- Chris