An embedded database system is a database management system (DBMS) which is tightly integrated with an application software that requires access to stored data, such that the database system is “hidden” from the application’s end-user and requires little or no ongoing maintenance.
Questions tagged [embedded-database]
434 questions
6
votes
3 answers
Looking for guidance on embedded .NET database (such as db4o, NHibernate, or RavenDB)
I have an object model that I want to store using an embedded database. I have so far been looking at db4o, NHibernate to SQLCE (w/ linq), and RavenDB. This would be used in a desktop C# application.
The key features I am looking to leverage are:…

David B
- 117
- 1
- 8
6
votes
2 answers
Embed a database in the .apk of a distributed application [Android]
My question is I think quite simple but I don't think the answer will be...
I have quite a lot of content to have in my application to make it run properly, and I'm thinking of putting all of it in a database, and distribute it in an embeded…

Sephy
- 50,022
- 30
- 123
- 131
6
votes
2 answers
Cross-platform embedded database/key-value store for C#
I'm looking for a fast, embeddable key/value store with cursor semantics over key collections (or a simple embeddable DB) that I can use in .NET and mono. Need it to be open-source, would prefer an MIT or Apache style license over a GPL license. Not…

Arne Claassen
- 14,088
- 5
- 67
- 106
6
votes
4 answers
Choosing database and licensing for Delphi application
We have Delphi XE2. We are looking for a database for our application. We have tried Absolute Database and it supports most of SQL commands we need. I see most of Delphi users choose Firebird but it seems to hard to work with. I am so much confused…

blacksun
- 733
- 7
- 24
5
votes
2 answers
Mongoid: embedded documents automatically initializing on construction of parent
Is there a way to get embedded documents to initialize automatically on construction in mongoid? What I mean is given that User which embeds a garage document. I have to write the following code to fully set up the user with the garage:
user =…

GTDev
- 5,488
- 9
- 49
- 84
5
votes
1 answer
Fixing deprecated SimpleMongoDbFactory to SimpleMongoClientDbFactory break Embedded Mongo tests
I work on a project which was extending SimpleMongoFactory to enable multi tenancy
public class MultiTenantMongoFactory extends SimpleMongoDbFactory {
After migrating from Spring boot 2.1.10 to 2.2.1, we tried to fix deprecation warning by using…

Zejuho
- 51
- 1
- 2
5
votes
2 answers
A non-relational embedded database with a permissive free software license?
many thanks in advance for taking the time to look at my question.
(I am aware of this question Nonrelational Databases for C++, but my needs are a bit different and it only has one answer.)
I am developing a commercial C++ library that must, among…

dwinchell
- 405
- 1
- 4
- 6
5
votes
2 answers
Best Embedded SQL DB for write performance?
Has anybody done any benchmarking/evaluation of the popular open-source embedded SQL DBs for performance, particularly write performance? I've some 1:1 comparisons for sqlite, Firebird Embedded, Derby and HSQLDB (others I am missing?) but no across…

Max Maximus
- 779
- 10
- 14
5
votes
1 answer
JDBC Connection URL For Embedded Derby in a Webapp
I have a derby database that is deployed along with my webapp to WEB-INF/classes/myDb
What should my jdbc.connection url be to connect so that I can write to the database?
I am trying
jdbc:derby:myDb;
and it can not find the database. I need to be…

dev
- 2,949
- 5
- 37
- 48
5
votes
3 answers
Is there embedded DB with PL/SQL support and Java API?
I'm looking for embedded db with Java API for testing purposes.
Also i need pl/sql support because we use oracle in production and migrations are written in pl/sql.
I want to test my DAO objects and i need to create db in memory in process of unit…

Chuprin
- 1,147
- 1
- 13
- 18
5
votes
3 answers
Is it possible to have a embedded database in a web application?
Is it possible to have a embedded database in a small web application? What I need is there should not be any need to install any database in the server machine. By just adding a jar in the folder the database should work.
I am using Java EE, and…

rgksugan
- 3,521
- 12
- 45
- 53
5
votes
1 answer
Connect from multiple applications to one firebird database via embedded dll
I am relatively new to database programming. I use firebird 2.5 with IBPP. I have at least two applications using the sampe firebird database. I want to connect with the embedded variant (fbembedded.dll, icudt30.dll, icuc30.dll), since it will be a…

Semjon Mössinger
- 1,798
- 3
- 22
- 32
5
votes
3 answers
Embedded Storage Alternatives for NodeJS
I need to implement a simple key-value storage for a nodejs application, for some environmental restrictions I can only use an embedded storage solution, meaning I can't use engines that work as a separate server/process (E.g. Mongodb, mysql,…

matix
- 79
- 1
- 5
5
votes
2 answers
Spring + Hibernate + H2 Embedded DB. How is the data saved?
Im new to embedded databases but I got it running at least. What confuses me is that my data is not saved between runs. I mean wouldn't that be nice for testing? I don't wanna add data to my database every time i run the application
So I searched…

nilsi
- 10,351
- 10
- 67
- 79
5
votes
3 answers
Serverless embedded noSQL for Android and iOS
I'm searching for a serverless embedded noSQL document-store database for (mainly) Android and iOS.
To simplify, I need a document based SQLite :P
MongoDB is great, and has lots of drivers but it needs a server...
Maybe a stripped down version of…

TesX
- 931
- 1
- 9
- 29