hi
how to get all tables name's in sqlCE Database ?
i have database in sqlCE (sdf file) and i neet to get all name's of the table's
how to do it ?
thank's in advance
hi
how to get all tables name's in sqlCE Database ?
i have database in sqlCE (sdf file) and i neet to get all name's of the table's
how to do it ?
thank's in advance
select table_name from information_schema.tables where TABLE_TYPE <> 'VIEW'