hi folks,
i'm building a small database maintenance program which lets the user execute commands on a database ( sqlite or mysql right now )
and also show the database tables and table structures.
i'm using poco 1.4.3.
when i try to execute a statement like "SHOW TABLES" or "DESCRIBE [tblname]" it executes without any exceptions but i get zero
rows of data back all the time.
it has nothing to do with missing priviliges, i checked that.
for testing purposes i accessed the database directly using mysql_real_connect() and so on , and i actually got the data back as
expected.
now i could use raw access within my application to get the desired data, but i wonder why these statements do not work using
the poco interface.
(note: getting normal data from tables within my database works fine (i.e select * from xyz), so the problem has to be somewhere else)
thanks in advance,
buzzdx





