embedded-database Questions

7

Solved

Is there an embedded PostgreSql so that we could unit test our PostgreSql driven application? Since PostgreSql has some dialects, it's better to use embedded PostgreSql itself than other embedded...

2

I'm trying to create DB and env using LMDB. I'm facing an issue on Env. create(). I have used LMDB documentation for this. Exception in thread "main" java.lang.ExceptionInInitializerError...
Mcgee asked 26/10, 2021 at 18:34

6

Solved

I need an embedded database for one of our .net applications. This database should support sql (Unlike Berkley). Can anyone suggest any options.
Osteen asked 26/3, 2009 at 5:13

14

I'm having trouble getting my brand new project to build. I used https://start.spring.io/ to generate a fresh new Spring 2.0 MongoDB Maven project, and I want to have an embedded MongoDB database f...
Annalist asked 23/4, 2018 at 21:36

2

Solved

I want to know if my understanding is correct : embedded : databases which are up if my application is up and are down if my application is down. I am not referring the databases used in embedded...
Gerianne asked 14/2, 2018 at 8:14

7

Solved

I am working on a RSS reader application. And I need to find a backend database. I want the database be embedded because I don't want the users to install a database server. I know SQLite is a goo...
Ridley asked 24/5, 2011 at 19:14

4

Solved

I have couple of entities in my data layer stored in particular schema. For example: @Entity @Table(name = "FOO", schema = "DUMMY") public class Foo {} I'm trying to setup H2 embedded database f...

8

Solved

If it's possible, I'm interested in being able to embed a PostgreSQL database, similar to sqllite. I've read that it's not possible. I'm no database expert though, so I want to hear from you. Esse...
Tag asked 13/9, 2008 at 2:59

7

Solved

In an application which embeds SQLite3 and uses an in-memory database, is it possible to replicate the database between two running instances of the application? I could do this by hand with a home...
Overrefinement asked 11/12, 2009 at 13:58

11

Solved

My question is a variation of this one. Since my Java Web-app project requires a lot of read filters/queries and interfaces with tools like GridFS, I'm struggling to think of a sensible way to emp...
Milestone asked 22/6, 2011 at 8:48

4

I am having problems with creating an in memory table, using H2 database, and accessing it outside of the JVM it is created and running in. The documentation structures the url as jdbc:h2:tcp://&l...
Durfee asked 4/5, 2010 at 19:40

2

How can I save/load full embedded h2 in-memory database to some file or directory in binary mode for faster loading. I want to use this for caching data so I don't have to run all the lines of cre...
Selfsame asked 7/3, 2012 at 11:54

11

Solved

I was (and still am) looking for an embedded database to be used in a .net (c#) application. The caveat: The Application (or at least the database) is stored on a Network drive, but only used by 1 ...
Zildjian asked 3/8, 2008 at 14:41

1

I am currently working on a spring boot application 2.0.3.RELEASE. I want to configure Flapdoodle MongoDb with MongoDb version 4.0 and I also want to set a single mongo instance and create replicas...
Belden asked 24/7, 2018 at 13:10

3

Solved

So I just recently started learning about how databases work, how to use SQL ect. and decided to start implementing an embedded database into my Java application (specifically the H2 database) and ...
Inellineloquent asked 27/2, 2012 at 8:8

10

Solved

I'm an embedded guy, not a database guy. I've been asked to redesign an existing system which has bottlenecks in several places. The embedded device is based around an ARM 9 processor runnin...
Maximomaximum asked 6/1, 2010 at 8:40

3

Solved

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 mu...
Shote asked 2/11, 2013 at 14:20

3

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...
Assuntaassur asked 27/6, 2013 at 11:38

4

One thing I love about .NET is the ability to have a database file along with the project. I know that using a SQLite database, this can be done, but did someone achieve this with a MySQL database ...
Firer asked 24/11, 2009 at 16:58

10

Solved

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 embedde...
Waterspout asked 21/7, 2009 at 17:0

2

Solved

Are there any advantages to use something like HikariCP with embedded databases like SQLite, H2 or HSQLDB? (the last two can also run in server mode but I'm not interested in that) Apart from the ...
Sylas asked 15/10, 2017 at 7:20

2

Solved

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...
Caloyer asked 3/7, 2013 at 4:1

4

Solved

I want to create an in-memory database populated with test data for fast testing, so I declare this bean in my configuration file, but I also want so set this properties: MODE=MySQL DB_CLOSE...
Tuinenga asked 24/4, 2017 at 18:35

5

I'm trying to setup an embedded Derby database for a standalone Java application, but after pouring through all sorts of documentation, I just can't seem to find any simple explanations or examples...
Illyes asked 8/12, 2010 at 23:27

3

Solved

H2 has a range of compatibility modes for various other databases such as MS SQL Server, MySQL, Oracle, etc that support different SQL dialects. However, when setting up an embedded database in Spr...
Banner asked 7/2, 2012 at 6:7

© 2022 - 2024 — McMap. All rights reserved.