Hi, i'm writing an application in C# and need to know how to get
DatabaseObjects and DatabaseObjectsProperties of my database in SQLite. For example, in SQL2005 obtain DatabaseObjects is in this way:
SET NOEXEC OFF
select name, xtype, id
from [{0}].dbo.sysobjects
where name like ('{1}%') and xtype in ('U','V')
order by xtype, name
How a can do this for SQLite
Thanks.