Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
9answers
989 views

Object Oriented Database - why most of the companies do not use them [closed]

I am pretty new to programming(just finished University). I have been thought in the last 4 years about Object Oriented development and the numerous advantages of this approach. My question is ...
2
votes
1answer
57 views

Using foreach in sql query, Object Oriented Database

The following is a scheme for a databse in an object-oriented setting. Every relation becomes a collection of objects. A Student is a person and a Faculty is also a person. These are shown as directed ...
2
votes
6answers
106 views

Object oriented approach using RDBMS

I have a question regarding how to use an object oriented approach while using an RDBMS such as mysql. I am developing a small application that will keep track of billing. It is built in java and I am ...
2
votes
1answer
101 views

How do you exclude a property in a persistent object in db4o using C#?

Since "[Transient]" does not really work on properties. What do I do now?
2
votes
1answer
98 views

How do you change the schema in an OO database such as DB4O?

Just getting started with DB4O object oriented database. I'm very familiar with SQL, if I upgrade the app and add a new field I just go into a SQL manager, change the schema, and initialize a new ...
2
votes
3answers
265 views

Can object oriented databases be a better option than a relational database with an ORM?

Just thinking that a relational db with an ORM is in many ways very similar to an object oriented database. My experience lies solely with RDMS with a hint of ORM, so it seems to me that object ...
1
vote
1answer
52 views

Which database type to use for an object-oriented content management system coded in PHP (5.3)?

A friend of mine and I just started an own project to learn about the newest and most future relevant web techniques: we decided to build an own object-oriented content management system with enhanced ...
1
vote
3answers
106 views

OODB JPA implementation difference with Hibernate

I already have some experience with Hibernate but, if I'm correct, there's no way to use it to access object databases like Versant's VOD. Since they just released a preview with JPA support I was ...
1
vote
2answers
132 views

Store in table pointers to rows from another table instead of using foreign keys

i'm just curious if it's possible to just use pointers the c/java/etc. way instead of joining tables based on foreign key. And since we're on this topic, does postgres or any other RDBMS use ...
1
vote
3answers
228 views

unsupported class hierarchy change in Db4o

I have: static class Db4o... and: class Db4oBase... // which uses Db4o class where I can: class Customer : Db4oBase { public Customer(string name) { } } so that I can: Customer ...
1
vote
4answers
220 views

Meaning of Types, Class, Interface?

Find many authors interchangably use the term Type and Class. Certain textbooks covering object based model covers the term Interface also. Could someone please explain these in simple terms based on ...
1
vote
2answers
189 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 ...
0
votes
0answers
27 views

System.IndexOutOfRangeException while opening a Perst database

We are using Perst for Silverlight for a while, with good results, but recently we are receiving the following error when the database is opened: System.IndexOutOfRangeException: ...
0
votes
0answers
31 views

MySQL and Object-Based Database

In database course our professor said us that in SQL:2003 we have object oriented features with our database, we can create type , define method for every type, define constructor, inherit a type from ...
0
votes
0answers
65 views

Object database VS Relational database? [closed]

I am looking at a project requiring a unique database solution. The elements involved abstract into countless (and growing) variations of relationships between many objects - meaning that a relational ...
0
votes
1answer
48 views

Query on an Object-Oriented Database

The following is a scheme for a databse in an object-oriented setting. Every relation becomes a collection of objects. A Student is a person and a Faculty is also a person. These are shown as directed ...
0
votes
1answer
38 views

How to store objects in a database for retrieval

I am trying to create a database that can be used to store lots of objects. I was trying to do this with a relational database however it seems to be a bit of a beast. I mean take the simple object ...
0
votes
3answers
154 views

Can I use hibernate for data centric applications?

I wag going through a hibernate tutorial, where they say that hibernate is not suitable for data centric application. I am very much impressed by the 'object oriented structure' it gives to the ...
0
votes
1answer
161 views

EF Code First 4.1: “Multiple Inheritence” (Is A) Question

I am trying to model a sort of "multiple inheritence" relationship with EF 4.1 Code First. Here is an example what I am trying to do. Let's say I am attempting to model the way a user interacts with ...
0
votes
0answers
114 views

what is the difference between object relational mapping, object relational database and object oriented database?

I am looking for an answer for, what is the difference between object relational mapping, object relational database and object oriented database? and if possible can any one give the pros and cons of ...
0
votes
3answers
295 views

Object oriented database

I don't know if this is the right title for this question. Anyway, recently I have heard about that you could make life easier when creating database. By in which you use object based database. It ...
0
votes
2answers
193 views

What object databases allow indexing of everything in the database?

Currently, db4o does not allow indexing on the contents of collections. What object databases do allow indexing of any individual field in the database? Example: class RootClass { string ...
0
votes
2answers
319 views

What's the key difference between a graph-database and a object-oriented database?

I'm finding a database which can store in-memory data structure naturally. In other words, the object graph. I once have used db4o, it's quite good but somewhat lacking. And I found a new concept of ...
0
votes
2answers
105 views

Storing Templates and Object-Oriented vs Relational Databases

I'm designing some custom blog software, and have run into a conundrum regarding database design. The software requires that there be multiple content types, each of which will require different ...
0
votes
1answer
200 views
0
votes
2answers
185 views

Versant OQL Statement with an Arithmetic operator

I'm working on a c# project that use a Versant Object Database back end and I'm trying to build a query that contains an arithmetic operator. The documentation states that it is supported but lack any ...
-1
votes
1answer
67 views

Object Oriented query in XQuery

I have no problem writing XQuery queries using relational style joins. However I am having some troubles using object-oriented style constructs. I have an xml database whose scheme can be found in the ...