An object or object-oriented database management system is a database management system in which data is stored in the form of objects

learn more… | top users | synonyms

4
votes
1answer
54 views

Questions about GemStone/S

I'm having a hard time understanding the big picture of GemStone for Smalltalk. I am aware of GLASS as an application server on top of Seaside. But what happens if I do not need Seaside or a web ...
0
votes
0answers
17 views

OO-DB Locking techniques

I'm new to Object orientated databases and currently trying to understand locking techniques. So far I've discovered that there are four techniques which are as follows:- Page Locking Cluster ...
0
votes
1answer
57 views

“cannot INSERT object view REF or user-defined REF”

I have a C_table and M_table and there is a m to 1 relationship between C_table and M_table, also I have L_table which Is A C_table type, , I'm trying to use OODBMS using oracle SQL Developer. I have ...
0
votes
1answer
45 views

Query conversion from db4o to hibernate

I'm currently working on a project to implement an OODB (object oriented database) cache where the requirements are to use a db4o database as the cache and store objects in it. My backend database is ...
1
vote
1answer
79 views

db4o enumset exception

I'm using db4o 8.0 with transparent activation/persistence ... I have a class which contains an EnumSet (and other things). I instantiate, add an enum value into set and store. When I search in DB, ...
0
votes
0answers
18 views

Can a hypergraph be described using Stack-Based Architecture (SBA) ?

Can a hypergraph be described using Stack-Based Architecture (SBA) ? References: http://www.sbql.pl/ ...
-2
votes
2answers
272 views

Create schema-free (document-oriented) table in MySQL

We are working on a LAMP-based software with customer data as a central unit. The table with the customer data is supplied by various sources via the import interface. The problem is, the table must ...
-1
votes
2answers
288 views

Productive oodbms for python?

can anyone tell me and describe what oodbms implementation can be used for productive web application that stores all persistent data on it.
0
votes
1answer
145 views

How to decide whether to use a RDBMS, Doc/Obj ODBMS or Graph?

What I intend to design basically boils down to a list of users, organisations, events, addresses and comments which could quite easily be maintained in a RDBMS such as MySQL. However, if the project ...
0
votes
0answers
333 views

Object-oriented database management system for .NET [closed]

I've read about db4o and how to work with .NET and I want to know more about object-oriented database management systems. Is there any Object database like db4o to work with .NET? And which one is ...
1
vote
1answer
126 views

Sequentially Accessed Records in an Hierarchical (Object) DB

I am creating an app that doesn't do any searching (or many other random-access activities). It's built on an object DB (ZODB if you're interested) and will store many instances of a identical type. ...
3
votes
4answers
89 views

Database or other method of storing and dynamically accessing HUGE binary objects

I have some large (200 GB is normal) flat files of data that I would like to store in some kind of database so that it can be accessed quickly and in the intuitive way that the data is logically ...
1
vote
1answer
169 views

Class design for a media manager application usig Db4o for efficient querying

I am a novice programmer and need some help with class design for my application. We are working on the design of a media manager desktop application (using .NET Framework 4.0) . The application ...
0
votes
1answer
145 views

db4o class model transient field

I am using db4o as DBMS and I have a question: Is there any way to specify that I do not want to store a field from the model class in the database? Something similar to @Transient annotation when ...
2
votes
2answers
306 views

Db4o - refresh ALL new objects in persistent session

is it possible in Db4o to load new objects into persistent IObjectContainer? I have a desktop application which opens one connection (IObjectContainer) when started. if I query all objects with: ...
5
votes
2answers
264 views

Method for indexing an object database

I'm using an object database (ZODB) in order to store complex relationships between many objects but am running into performance issues. As a result I started to construct indexes in order to speed up ...
3
votes
1answer
272 views

What's the best OO-DBMS to use in Production for Java?

I was thinking to start researching about OO-DBMS performance for Java applications to use in production scenarios. Did you have any successful experience using an OO-DBMS for Java rather than a ...
1
vote
2answers
446 views

Retrieve an object in one DB4O session, store in another ('disconnected scenario')

I am trying to figure out how to keep an object useable between client sessions in DB4O. From what I understand, once a client session is closed, the object no longer resides in any cache and despite ...
12
votes
6answers
4k views

is ObjectDB production ready?

In this benchmark ObjectDB is far the fastest DB: http://www.jpab.org/All/All/All.html But I cannot see any other benchmark results from ObjectDB. Is anyone using ObjectDB? Is it production ready? ...
2
votes
1answer
642 views

Embedded nosql open source java database

I'm developing an open source product and need an embedded dbms. Can you recommend an embedded open source database that ... Can handle objects over 10 GB each Has a license friendly to ...
-3
votes
1answer
912 views

Different types of databases [closed]

I want to ask my question more clearly. Last night I read about type of databases. dbms [Data Base Management System] rdbms [Relational dbms] odbms [Object dbms] oodbms [Object Oriented dbms] ...
2
votes
5answers
1k views

OODBMS - RDBMS difference and which one is suitable for a factory management system

I searched a bit for the differences between OODBMS and RDBMS. I pretty much know what they are. However, how I will decide which one is better for which applications. Can anyone kindly help me ...
11
votes
4answers
1k views

Need to store LOTS of data on Android device, thinking of going OODB

I'm currently working on a project that's based on Android. Without getting into many details, the software will run on a custom built device. The hardware will never change and will always be the ...
0
votes
1answer
146 views

Not to delete child record on deleting parent table record

I am little bit newbie in Hibernate and DBMS and stuck on a problem. I have two table. One is A and second is B. There is Many-to-One relationship between these two tables. Now on removing one record ...
3
votes
1answer
333 views

Why aren't object oriented database management systems more popular? [closed]

I mean, with EJB, LINQ2SQL, EF etc we're trying to (at least in my perspective) map the rdb in a way so we can use the entities as objects. How come there hasn't been a surge of OODBMS since they ...
0
votes
1answer
624 views

What is the Best Database Choice for a Single User .NET Winforms Application [closed]

I'm writing a new .Net 3.5 Winforms single user application and I'm not sure which database I should use. The database consists of about 30 tables and maximum rows in a table will not exceed 50,000. ...
1
vote
2answers
262 views

Object-oriented / Relational-Hybrid Database?

I've been using relational databases + object relational mappers for object persistence. I don't think this is a truly adequate solution for persistence, because it adds unnecessary overhead. It also ...
1
vote
2answers
162 views

What sort of Database system should I use?

I'm planning to write an address book that stored contact information. Each contact could have an unlimited number of fields. Mostly strings and integers. But perhaps references to other Objects. ...
1
vote
1answer
272 views

OODBMS postgreSQL array Fields real Use?

I am new to PostgreSQL, mainly used MySQL before and SQLServer(for Clients Pressure; donno much), I've gone through several OODBMS Introductories over some Google Search. Most of them mainly focuses ...
2
votes
1answer
1k views

JDO architecture: One to many relationship and cascading deleting

I’m new to object oriented database designs and I’m trying to understand how I should be structuring my classes in JDO for google app engine, particularly one to many relationships. Let’s say I’m ...
8
votes
4answers
3k views

Real World Experience of db4o and/or Eloquera Database

I am evaluating two object databases, db4o (http://www.db4o.com) and Eloquera Database (http://eloquera.com) for a coming project. I have to choose one. My basic requirement is scalability, multi ...
5
votes
3answers
2k views

Is there a pure object database for PHP? [closed]

I'm interested in knowing if there is a pure object oriented database for PHP. Something similar to zodb for Python. I'm not really looking for an object-relational mapper. So no active record ...
1
vote
2answers
219 views

.NET project: unified wrapper for object databases

I am considering doing a project which would provide unified API and tools (import/export, etc.) for object databases (e.g. Caché, Objectivity) for .NET. It would provide: schema generation from ...
10
votes
3answers
2k views

Recommend a good db4o viewer [closed]

I'm playing around with db4o, and I have the Object Manager viewer thingy for Visual Studio. It seems okay, but not exactly on par with tools like HeidiSQL/SQL Studio/etc., not to mention that it ...
14
votes
7answers
5k views

Why aren't OODBMS as widespread as RDBMS?

Why are relation databases more common than object-oriented databases? If the Object Oriented Programming paradigm is so widespread, shouldn't we see lots of OODBMS? Wouldn't they perform better than ...
1
vote
5answers
219 views

Was anyone thinking of 'CLR Server' instead 'SQL Server'?

I was thinking many times, now days that we have Linq and other CLR language-specific built-in search, sort and other capabilities over tables, collections and object, why not have the 'SQL Server' or ...
9
votes
6answers
2k views

How to design many-to-many relationships in an object database?

I thought it was about time to have a look at OO databases and decided to use db4o for my next little project - a small library. Consider the following objects: Book, Category. A Book can be in 0-n ...
1
vote
1answer
307 views

Could you use Lucene as an OODB?

Given that Lucene is a robust document based search engine could it be used as an Object Database for simple applications (E.G., CMS style applications) and if so what do you see the benefits and ...
1
vote
3answers
373 views

Relational & Object-Oriented Database which one is better, will be suppressed?

I wonder if RDBMS or OODBMS will be suppressed in near future? Today I read quite a few articles about differences in both of them and most of the articles seem to favor OODBMS. Does that mean that ...
2
votes
2answers
993 views

Main Memory DB vs Object DB

I'm currently trying to pick a database vendor. I'm just seeking some personal opinions from fellow database developers out there. My question is especially targeted towards people who: 1) have ...
6
votes
3answers
2k views

Many to many object to object relation in C#

I am working on a small educational project to exercise perst.net. We have a tiny design problem, that is how to best resolve the relation between two classes of objects, that is the participant and ...
15
votes
2answers
7k views

Object Oriented Database Vs object Relational Database

I wonder how Object Oriented data modeling is different from Object Relational data modeling? Is it something like the pluses of both object oriented and relational data modeling were clubbed to ...
2
votes
2answers
798 views

Migrating from 'native' OODBMS to ORM (Entity Framework / SQL Server)

A while ago we started developing a new project which internally has about 25-30 different classes/types/models that are heavily related to each other either via 1:n, n:m or n:1 relationships. Back ...
0
votes
1answer
198 views

Does Linq and projects like i4o make object oriented DBs a viable alternateive to relational DBs?

Given Linq and technologies like i4o is there any real reason why an object oriented database management system won't be a viable alternative to a relational database management system for new ...
2
votes
4answers
647 views

Should I use OODB for small applications?

We looking to build an application to maintain meeting minutes and similar stuff using .net. I was thinking of using db4o or some OODB for this. Is it a bad idea? I am looking to simply create a ...
2
votes
1answer
305 views

How do you do data management tasks in a Db4o Object Database?

I'm new to OODBMS systems, but I'm using Db4o on a new project for which it's perfectly suited. Things are going great and I really like the concept, but I'm struggling with how to do basic data ...
10
votes
12answers
958 views

Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?

Say you're coding some kind of web application. Something where people can contribute content, e.g. a simple photo-sharing site. How many good reasons can you think of to not go with an ...
19
votes
13answers
2k views

Why have object oriented databases not been successful (yet)?

That's the question. Give only one reason you think why have OODB failed or why many systems nowadays still use relational databases.
8
votes
7answers
2k views

What are the pros and cons of object databases?

There is a lot of information out there on object-relational mappers and how to best avoid impedance mismatch, all of which seem to be moot points if one were to use an object database. My question ...