Thread: sqlite3
View Single Post
rcull's Avatar
Posts: 299 | Thanked: 168 times | Joined on Jun 2006 @ Wales UK
#3
Brendan
The 'temp' database will have been created when you issued something like 'create temp table poi' . When you then 'select * from poi;' it will default to the temp table. Issue 'drop table temp.poi;' you will then get what you expect from your select.

Rick