how to get a listing of tables in sql mobile 2005 database

  • Thread starter Thread starter Optimus
  • Start date Start date
O

Optimus

HI all,

Does any one know how to get a listing of all of the tables located
in your sql mobile 2005 using .net compact framework?

Thanks in advance!
 
Hi,
should be 'Select * from information_schema.tables' to get a list of the
tables.

Then for the columns, 'Select * from information_schema.columns where
table_name = ' ....


HTH

Pete
 
Back
Top