From: Jim Wallace Date: September 19 2007 4:16pm Subject: RE: All tables for a Database ( with information) List-Archive: http://lists.mysql.com/plusplus/7026 Message-Id: <5AA52B773286DA4E83B1F2D034FFED3724725A@mailexchange.klausatlanta.local> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable You can hit the information_schema database, or I suspect you can issue the following as a queries, since they return a result sets query << "show tables"; .... row.at(x).at(0) is tablename query << "describe " << tablename;=20 run interactively to see what to expect. -----Original Message----- From: Mandy Llanes [mailto:mandy.llanes@stripped]=20 Sent: Wednesday, September 19, 2007 6:49 AM To: plusplus@stripped Subject: All tables for a Database ( with information) Hello, I want recovery information for all tables of a database. With mysqlpp::Connection i have the conection to database, but how i can recovery all information for their tables ( fields, type fields, keyword fields). Thank's very much.