Questions tagged [embedded-database]

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.

434 questions
0
votes
3 answers

ASP.NET MVC 2 Embedded Database

I am building a very small temprorary website that needs a small backing store. I have built this in ASP.NET MVC 2, and wanted to host with DiscountASP - although this isn't essential. I would like an backing store that will work with ASP.NET MVC 2,…
Mark Cooper
  • 6,738
  • 5
  • 54
  • 92
0
votes
1 answer

Can't get access to the Java DB (Embedded) using NetBeans utilities

stackoverflowers!!! I've got a big problem with creating embedded database, using NetBeans IDE. So, this are the steps I'm taking to create app: 1 - In Services I'm starting the server. 2 - Then creating the database; 3 - Making a connection, using…
SanchelliosProg
  • 2,091
  • 3
  • 20
  • 32
0
votes
1 answer

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 hates JOINs, performance-wise) and the requirement of adding a wildcard mechanism to a search field. Currently the search field…
fk2
  • 739
  • 1
  • 14
  • 30
0
votes
1 answer

ObjectDB Connection in Eclipse

I am very new to the ObjectDB. The reason I am trying to use this is to create desktop java application using embedded database. In other words, I ultimately want to give my friend a runnable jar file alone so he can access the database in javaFX…
Rin
  • 99
  • 1
  • 3
  • 6
0
votes
0 answers

HSQLDB embedded in Spring MVC application with file-based persistence

I am working with a Spring MVC web application that simulates an in-memory persistence layer using a combination of Maps, Lists, etc. Obviously, a database is much more performant, so I want to use HSQLDB. I want the database to be embedded from the…
Web User
  • 7,438
  • 14
  • 64
  • 92
0
votes
1 answer

Internet Explorer - Embedded database

Every browser do use some embedded database. From Wikipedia information it looks like that Google Chrome use SQLite and LevelDB. [Wiki for SQLite] - "The browsers Google Chrome, Opera, Safari and the Android Browser all allow for storing information…
0
votes
0 answers

IndexedDB - Discrepancy in information by Mozilla

I found 2 different references about IndexedDB in Mozilla website. Statement 1: "IndexedDB is an API for client-side storage of significant amounts of structured data" Statement 2: "IndexedDB is a transactional database system, like a SQL-based…
0
votes
1 answer

AccessControlException when using Embedded Neo4j in GWT

Anyone have experience with using embedded Neo4j in GWT? I get an AccessControlException when I try to create the embedded database. Here's the line I use to create my database in my ServiceImpl file: GraphDatabaseService graphDb = new…
Corey Wu
  • 1,209
  • 1
  • 22
  • 39
0
votes
0 answers

HSQL database is dropped after application executing

I created DAO data tier with JDBC and HSQLDB in standalone mode. I'm creating connection in this way: Connection c = DriverManager.getConnection("jdbc:hsqldb:file:/databases/testdb", "sa", ""); Project is build with maven to jar and is used in two…
It'sMe
  • 125
  • 1
  • 15
0
votes
1 answer

What is the difference between the different BerkeleyDB versions, and which should I choose?

Many things depend on BDB. When I go to install the prepackaged software for my server, each piece of software seems to want a different version of BerkeleyDB. But it seems when I compile them I can specify a specific BDB version. (The software…
Joe Koberg
  • 25,416
  • 6
  • 48
  • 54
0
votes
1 answer

Derby database connection issue only when using the EmbeddedDriver

I'm trying to develop a program including a JTable and a Embedded database. So i added the logic to the table model(logic is not yet completely built to work with the jTable due to this error). Here i start the connection in the setup()…
Imesha Sudasingha
  • 3,462
  • 1
  • 23
  • 34
0
votes
1 answer

embedded im-memory database in maven

I've got embedded tomcat setup in pre-integration test phase. I need to create the same for in-memory database but before the embedded tomcat. Are any easy&useful maven configuration examples for doing that (for example HSQLDB) ?
ServerSideCat
  • 1,992
  • 3
  • 18
  • 24
0
votes
3 answers

java embedded key-value data store for counters

I am searching for an embedded key-value data store which has Java API easy to manipulate counters (a.k.a. SET value=value+10 WHERE key="k") support multi-threads clients High performance I have found LevelDBJni, but it is designed for simple K-V…
ccshih
  • 1,190
  • 3
  • 17
  • 25
0
votes
1 answer

Spring Relative Path File Resource In Application Context

I have a quick question about getting spring to read a file from the application context that is external to the project. I have two projects; 1) Project A 2) Project Database. Project A has the following structure; ProjectA |-src |-main …
0
votes
1 answer

HSQL Embedded Database

I want to create HSQL embedded database but jdbc:hsqldb:file:"What should I write here to work on other PC". If I copy my project to another pc and click the jar file , it needs to access my database. So, what should I write for file path ? My…
Ver
  • 13
  • 3