1

I need a database for my application. However, I want a portable database like SQL Express that user does not need to install any database.

However my environment is now changed to Linux. Any suggestions?

I accept both SQL (Oracle, SQL Server, Postgre...) and non-SQL (mongodb...etc) databases. Thanks!

Alex Yeung
  • 2,495
  • 7
  • 31
  • 48

3 Answers3

7

SQLite is the de facto standard.

SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. SQLite is the most widely depl

Matt Ball
  • 354,903
  • 100
  • 647
  • 710
1

A leading server-less SQL Database is SQLite.

To determine when to use SQLite vs another DB, visit this link.

Cameron S
  • 2,251
  • 16
  • 18
1

Try SQLite. C written and embeddable

Arnon Rotem-Gal-Oz
  • 25,469
  • 3
  • 45
  • 68