On Sun, 2005-03-06 at 23:36 -0800, Charles Mills wrote: > Is there anyway to do 'pragma table_info' on a table in an attached > database (even if a table in the main database has the same name). I > guess I am wondering why this doesn't work: > PRAGMA table_info(database_name.table_name) > > I get 'near ".": syntax error'. >
PRAGMA database_name.table_info(table_name); -- D. Richard Hipp <[EMAIL PROTECTED]>

