Is it possible to create a VIEW (not temporary view) in a Sqlite database that has other databases attached to it?
The view should be able to access data from all databases via joined tables.
Is it possible to create a VIEW (not temporary view) in a Sqlite database
Share
No, the view must be temporary, otherwise an error will occur:
This makes sense since a temporary view is part of the automatically created
tempdatabase which only exists for the current process.EDIT:
You can list the temporary tables and views (all stored in the automatically created
tempdatabase) this way:To list views only: