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
16
votes
14 answers
Highest Performance Database in Java
I need ideas to implement a (really) high performance in-memory Database/Storage Mechanism in Java. In the range of storing 20,000+ java objects, updated every 5 or so seconds.
Some options I am open to:
Pure JDBC/database…

mainstringargs
- 13,563
- 35
- 109
- 174
15
votes
3 answers
Embedded document database for Node.js
What is the best embedded NoSQL database for Node.js?
My node.js application is too tiny to use a big database like mongodb which need extra configurations.
I tried EJDB, but it need too much disk space (about 1.5MB for each record).
I also search…

Synthetic Dream
- 191
- 1
- 2
- 8
15
votes
6 answers
Which embedded database has maximum SQL compliance, and concurrency support?
My application at present uses Microsoft Access, but now may be hosted on Linux boxes. Additionally while being accessed from multiple computers, one of these may update the records (when its being read by other users).
I also require that the…

vikramsjn
- 1,013
- 1
- 10
- 21
15
votes
6 answers
Is there a lightweight, embeddable, key/value database? (something like diet couchdb)
I was wondering if there was a lightweight, embeddable, key/value database out there.
Something like a lightweight Couchdb (RESTful, key/value, etc) where you just send it the key and it responds with appropriate values.
Thanks!

vrish88
- 20,047
- 8
- 38
- 56
13
votes
2 answers
How should I check if two nodes have relationship with each other,in neo4j embedded database in java?
How should I check if two nodes have relationship with each other,in neo4j embedded database in java?
I want the syntax please or a tutorial link,I have seen neo4j website but didn't find it.
Thanks.

fereshteh
- 499
- 5
- 18
12
votes
1 answer
How do I use Spring embedded database initialization scripts during the integration-test phase?
I can use Spring to create and initialize embedded databases either programmatically:
@Before
public void setUp() {
database = new EmbeddedDatabaseBuilder()
.setType(EmbeddedDatabaseType.H2)
.addScript("schema.sql")
…

Ray Toal
- 86,166
- 18
- 182
- 232
12
votes
20 answers
Simple database application for Windows
I need to build a simple, single user database application for Windows. Main requirements are independence from windows version and installed software. What technologies (language/framework) would you recommend? My preference for language is the…

grigy
- 6,696
- 12
- 49
- 76
11
votes
1 answer
H2 database in memory mode cannot be accessed by Console
I am creating an in memory database in H2 database by the following code on servlet context startup
void initDb() {
try {
webserver = Server.createWebServer().start();
Class.forName("org.h2.Driver");
Connection…

samarjit samanta
- 1,285
- 2
- 16
- 29
11
votes
6 answers
In-memory DBMS's for unit testing
I am looking for satisfactory options for unit testing my .NET DAL classes; since they're DAL classes, they access the database directly using ADO.NET. Presently I use an instance of a MSSQL database for the testing, but was wondering what faster…

Eric Smith
- 5,262
- 2
- 33
- 49
11
votes
5 answers
Embedding mysql in java desktop application
i am not clear about steps/configuration details about how i can embed mysql in a Java desktop application so that it(application) can be installed on any machine through a single executable file and doing so sets up database and also provides an…

Andrew
- 131
- 1
- 2
- 4
11
votes
2 answers
What's the appropriate way to test code that uses MySQL-specific queries internally
I am collecting data and store this data in a MySQL database using Java. Additionally, I use Maven for building the project, TestNG as a test framework, and Spring-Jdbc for accessing the database. I've implemented a DAO layer that encapsulates the…

XComp
- 113
- 1
- 5
10
votes
14 answers
Full text search with embedded DB in Delphi
We are creating an open source Twitter client and are looking for an embedded DB with the smallest footprint possible that works with Delphi and that lends itself well to full text search (I know that doesn't go with small footprint very well).…

Jim McKeeth
- 38,225
- 23
- 120
- 194
10
votes
2 answers
Fast embedded database
I am working on an application which will need to store metadata associated with music files (artist, title, play count, etc.), as well as sets of integers (in particular, SHA-1 hashes).
The solution I pick needs to:
Provide "fast" storage &…

CmdrMoozy
- 3,870
- 3
- 19
- 31
10
votes
10 answers
java embedded database w/ ability to store as one file
I need to create a storage file format for some simple data in a tabular format, was trying to use HDF5 but have just about given up due to some issues, and I'd like to reexamine the use of embedded databases to see if they are fast enough for my…

Jason S
- 184,598
- 164
- 608
- 970
9
votes
3 answers
How to setup MongoDB for integration tests in NodeJS?
I am writing integration tests for application written in NodeJS with MongoDB.
On CI server I would like to have some sort of embedded MongoDB for faster performance and easier control.
Currently I have MongoDB on other server, but tests are slow.…

Luka Blažecki
- 183
- 1
- 7