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
0
votes
3 answers
Can PostgreSQL be used with an on-disk database?
Currently, I have an application that uses Firebird in embedded mode to connect to a relatively simple database stored as a file on my hard drive. I want to switch to using PostgreSQL to do the same thing (Yes, I know it's overkill). I know that…

Chris
- 3,400
- 1
- 27
- 41
0
votes
0 answers
Delphi embedded database with network share support
I do not know if I'm doing the right question, but this is the situation:
I need to develop an application that will connect to a database.
This same application will be used on 2 computers on the same network (I'll call PC1 and PC2).
The database…

paul_hr
- 1
0
votes
1 answer
Sqlite3 gives "Error : Constraint failed" - interfacing to AM1808
Hello I am using sqlite3 for database management for my AM1808.
I have created a new table named MilkRateChartEditDetail.
const char *SQL_CREATE_MILKRATECHARTDETAILEDITTABLE =
"CREATE TABLE IF NOT EXISTS MilkRateChartEditDetail ( \
…

Parthiv Shah
- 350
- 3
- 17
0
votes
2 answers
Trusted and scalable embedded database
I'm looking for a DB embedded solution to deal with a average/medium amount of data (maybe between 100MB to 2GB), and allow concurrent connections, not so much, I believe at least
more than 10 concurrent connections for objects (database, tables) up…

Bera
- 1,272
- 4
- 23
- 49
0
votes
3 answers
Running h2 in MODE=MySQL doesn't support MySQL dumps
I'm trying to embed h2 to test my mysql-application (integration-test)
I added com.h2database:h2:1.3.170 via maven and run the following code:
public class InMemoryTest
{
@Test
public void test() throws Exception {
…

Sebastian Saip
- 452
- 2
- 5
- 17
0
votes
1 answer
Grails embedded query array
i have a code like this on grails mongodb
//myDomain
class Plugin {
List projects = []
//projects has name and description
}
//myController
def query = null
if (params.q != null)
{
def q = '%'+ params.q +'%'
…

rsijaya
- 159
- 2
- 14
0
votes
1 answer
Embedding an Access *.accdb Database into a .NET application
I want my users not to be able to see the MS Access *.accdb Database I am using. Therefore would I like to embed it into the assembly. How should I do this?
My guess is to modify the connection string.
The connection to the database has been…

Nicolas
- 1,151
- 3
- 15
- 28
0
votes
1 answer
PHP Derby Connection using the IJ tool?
I'm writing a PHP program to read from a Derby database and was wondering if there was a way to connect to an embedded Derby Database using the ij tool.
The host machine is a Mac and I couldn't find a free/open source tool for the obdc driver, but I…

Aaron Nguyen
- 195
- 1
- 3
- 14
0
votes
1 answer
Debugging/tracing embedded sql
Is there a way to trace/log sql from the code (not from the db side, but rather what the code thinks it's doing)?
I am using Pro*C/C++: Release 8.1.7.0.0 for Oracle

LK__
- 6,515
- 5
- 34
- 53
0
votes
3 answers
Don't load fbembed.dll,but it's good in test case?
I'm using FireBird embedded in my .net application.The fellow is my connection:
the code is:
public class ImDb{
private static FbConnection _fbConnection;
public static FbConnection IMManagerConnection() {
var…

bnPYSse
- 397
- 4
- 12
0
votes
2 answers
Embedded database server engine
I am looking for something that could enable my application (.Net 4.0) to access a locally hosted database without the need for a server.
If this solution supports Entity Framework, that would be the best.
I have already tried Firebird + DDEX, but…

Francis Ducharme
- 4,848
- 6
- 43
- 81
0
votes
1 answer
Which is best embedded database for java?
I have to develop embedded project in java and for that I need good embedded database.
Features i need are:
1) relational database
2) GUI interface
Can anyone suggest me good database?
Thanks

Deval
- 93
- 3
- 10
0
votes
0 answers
Embedded database for a simple portable application
I am going to develop small WPF application. Target platform is .NET 3.5. The main goal is to make it portable (move to any folder and it works out of the box). It should run on Windows 7 machine without any additional installations. However I need…

Pavel Shchegolevatykh
- 2,568
- 5
- 29
- 32
0
votes
3 answers
SQLite 3 interfacing with AM1808 Embedded Linux
I have interfaced SQLite3 with my Am1808 processor. I store my data in the SDcard.
It is working very fine. I have inserted a table for 38 fields. Now I want to add a column in the same table. So I have changed the table fields parameters, and make…

Parthiv Shah
- 23
- 7