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.
相关问题
- SQL/SQL-LITE - Counting records after filtering
- Android ContextMenu for View (Not Activity)
- What SQLite NuGet package do I need
- How to write the array into the sqlite database fo
- Groupwise MAX() on a subquery
No, the view must be temporary, otherwise an error will occur:
This makes sense since a temporary view is part of the automatically created
temp
database which only exists for the current process.EDIT:
You can list the temporary tables and views (all stored in the automatically created
temp
database) this way:To list views only: