Top "Embedded-database" questions

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.

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 …

.net data-access-layer embedded-database in-memory
How execute `schema.sql` during spring boot test without embeded datasource configuration?

There is spring boot application with h2 database which is used as primary database. Also there is a resource/schema.…

java spring spring-boot embedded-database spring-boot-test
SQL Use Greater/Less Than with like and wildcards

I'm currently a bit stumped on how to implement a certain thing. Basically I have an embedded database(which really …

sql wildcard embedded-database vistadb
Am I crazy? Switching an established product from HSQLDB to Apache Derby

I have an established software product that uses HSQLDB as its internal settings database. Customer projects are stored in this …

java derby hsqldb embedded-database
Why does my flapdoodle Embedded MongoDB test fail to run? (creating 'embeddedMongoServer' could not start process EOF)

I'm having trouble getting my brand new project to build. I used https://start.spring.io/ to generate a fresh …

mongodb maven spring-boot spring-test embedded-database
Embedded non-relational (nosql) data store

I'm thinking about using/implementing some kind of an embedded key-value (or document) store for my Windows desktop application. I …

.net sqlite nosql embedded-database
Fast embedded database

I am working on an application which will need to store metadata associated with music files (artist, title, play count, …

c++ database data-structures embedded-database
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(…

spring integration-testing embedded-database
Reliable and efficient key--value database for Linux?

I need a fast, reliable and memory-efficient key--value database for Linux. My keys are about 128 bytes, and the maximum value …

python database store embedded-database key-value
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 …

spring hibernate spring-mvc h2 embedded-database