Alex Yeung
Alex Yeung

Reputation: 2515

Non-installed database

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!

Upvotes: 1

Views: 676

Answers (3)

Arnon Rotem-Gal-Oz
Arnon Rotem-Gal-Oz

Reputation: 25909

Try SQLite. C written and embeddable

Upvotes: 1

Cameron S
Cameron S

Reputation: 2301

A leading server-less SQL Database is SQLite.

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

Upvotes: 1

Matt Ball
Matt Ball

Reputation: 359836

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

Upvotes: 7

Related Questions