It seems that sqlite won't allow me to create a temporary view in a read-only db. Am I missing something? If it's TEMPORARY, I figured db connection mode shouldn't matter.

I even specified "PRAGMA temp_store = MEMORY" -- it didn't help.

Is there a reasonable alternative to using views?

link|improve this question

53% accept rate
feedback

1 Answer

You can create a temporary view that references data in the main db.

CREATE VIEW temp.userview AS select userid, firstname, lastname from main.usertbl;

Then access the view like such...

SELECT * from temp.userview;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.