SQLite Forum

Temp database
Login
> what is the string for opening/attaching a temporary database?

sqlite doesn't, to the best of my knowledge, have any APIs for managing temp databases. It has temp tables:

```
create temp table x ...;
```