embedded-database Questions

7

I recently asked a question about Neo4j, which I got working and which seems nice. It's embeddable and it's written in Java and there aren't (too) many dependencies. However it's a graph DB ...
Adamsun asked 19/3, 2012 at 14:32

2

Solved

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. Tha...
Anemology asked 20/10, 2013 at 13:2

29

Solved

I am creating a desktop app in Delphi and plan to use an embedded database. I've started the project using SQlite3 with the DISQLite3 library. It works but documentation seems a bit light. I recent...
Vertigo asked 21/10, 2008 at 17:16

2

Solved

What I think I'm looking for is a no-SQL, library-embedded, on disk (ie not in-memory) database, thats accessible from java (and preferably runs inside my instance of the JVM). That's not rea...
Lodhia asked 5/3, 2014 at 0:36

8

Solved

I'm in need for an embedded database for a Clojure application. Maybe it's the same criteria as for any other Java application but I rather get some other people's opinion anyway. I'm not picking S...
Juniper asked 3/8, 2011 at 6:7

14

Solved

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 op...
Connivance asked 13/1, 2009 at 17:34

2

Solved

According to this documentation: 29.1.1 Embedded Database Support Spring Boot can auto-configure embedded H2, HSQL and Derby databases. You don’t need to provide any connection URLs, simply ...
Abundant asked 12/4, 2016 at 10:16

1

Solved

I am using h2 embedded database which is defined like that: <jdbc:embedded-database id="embeddedDatasource" type="h2"/> And I have two tests: @RunWith(SpringJunit4ClassRunner.class) @WebA...
Veronica asked 12/6, 2015 at 14:56

3

Solved

My team uses a shared instance of Oracle for development using C#, NHibernate and ASP.NET, and we occasionally step on each others toes when making data or schema changes holding up everyone. On ...
Geraldo asked 21/4, 2009 at 14:8

1

Solved

I work on a C tool, in which I need to manipulate and query process-internal data intensively. Hence, I've decided to use the MySQL C API on Embedded mode, so I can have an embedded DB for each r...
Widener asked 2/7, 2014 at 14:24

20

Solved

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 ...
Charissa asked 22/9, 2008 at 8:1

1

Solved

I need to create an application, that is used by multiple users concurrently does not require any installation has a centralized data storage data must be stored inside company's network i...
Rahman asked 26/11, 2013 at 23:11

18

Solved

I intend to develop a small (Java) application for managing my finances. I believe I need to use an embedded database, but I have no experience regarding this issue. I tried to look at some o...
Carnarvon asked 20/1, 2009 at 20:17

2

Solved

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. ...
Mudlark asked 28/6, 2012 at 12:57

2

Solved

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...

2

Solved

I'm currently using the following setup to create a schema in an embedded database before running my tests against it In my application context <jdbc:embedded-database id="dataSource" type="HS...
Battlement asked 20/8, 2013 at 9:11

3

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 a...
Vowel asked 19/11, 2010 at 15:58

1

Solved

I need to deploy a WCF service with a database on client machines. I am confused about SQL Server Express. I need to verify all of the following. When attaching database files in the App_Data fol...
Christine asked 9/7, 2013 at 12:19

14

Solved

I'm making this tiny utility program (Windows Forms) and it would need to save a bit of data to the disk. In DB terms it would be about one table, no more than about couple thousand rows, each row ...
Deplete asked 16/10, 2009 at 13:34

8

I'm thinking about using/implementing some kind of an embedded key-value (or document) store for my Windows desktop application. I want to be able to store various types of data (GPS tracks w...
Hornsby asked 17/1, 2010 at 13:24

2

The application I am working on is a Velocity/Spring MVC/Mongo on tomcat kind of webapp. I am able to run my integration tests on Embedded Mongo, using EmbedMongo which takes longer to run all the...
Warily asked 26/4, 2012 at 4:42

4

Solved

As the title says I like to embedd the MongoDB server into my own C++ application. I haven't found this mode in the documentation. What I was looking for is something like SQLite or Firebird in the...
Jackquelinejackrabbit asked 5/5, 2011 at 17:46

4

Solved

What does your Spring configuration for integration tests look like using an embedded h2 datasource and, optionally, JUnit? My first try with a SingleConnectionDataSource basically worked, but fai...
Handicapped asked 6/1, 2010 at 10:42

3

Solved

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# applicatio...
Nocturnal asked 27/8, 2010 at 0:19

1

Solved

I can use Spring to create and initialize embedded databases either programmatically: @Before public void setUp() { database = new EmbeddedDatabaseBuilder() .setType(EmbeddedDatabaseType.H2) .a...
Twittery asked 9/8, 2012 at 18:11

© 2022 - 2024 — McMap. All rights reserved.