Could sqlite also be inmemory database?

A little embarrassed, I watched a video where some guy used sqllite as a database in memory. From sqllite.org seems like real db?

Could it be either in-memory binary that I saw something else? (used with NUnit).

+5
source share
3 answers

Have read it

Sqlite is a real built-in database that is used in many places (including iphone and firefox), apis allows you to specify whether you want to save your db in memory.

+6
source

Yes, just use ":memory:"as the database path.

+3
source

, . , : memory: .

+2

All Articles