wqual wrote:
is there a way to list all views of my database? Something like the .tables-command for tables would be great.
I would be glad for some hints on this issue!


Wolfgang,

You can use the following query to get the view names from the sqlite_master table.

 select name from sqlite_master where type = 'view';

HTH
Dennis Cote

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to