Search code examples
rubysqlitesequelin-memory-database

How do I access an in-memory database using Sequel.sqlite?


I am accessing the in-memory database using Sequel in a Sinatra application. I want to access the in-memory database used in my application from the command line on my local host, as well as Heroku.

Is there a way to access the in-memory database outside the application or do I have to use a database?


Solution

  • An in-memory database resides in your process's memory and is not accessible from outside the application.