The object-database tag has no wiki summary.
-1
votes
0answers
36 views
Saving complex java object from production and replaying it [closed]
I want to test service which expects huge Java object as parameter which requires lot of boiler plate code. Is it possible to add one line in Runtime environment and save it to file and then restore ...
0
votes
1answer
37 views
Java: is it possible to create two objects during different runtimes with the same identity?
I don't have a computer science background. I am using DB4o and want to make sure I get one unique object back when I use code like this:
public List<Object> getListOfObjects(final Object o){
...
0
votes
1answer
126 views
I cannot find my ObjectDB odb file
I recently completed this tutorial,
http://www.objectdb.com/tutorial/jpa/eclipse/spring/run
It says the .odb file is created under the Tomcat directory, but I can't find the Tomcat directory. I did ...
0
votes
1answer
40 views
Is there a way to drop a table in the explorer of objectDB?
Is there a way to drop a table in the explorer of objectDB (or is there a way to drop a table at all)?
I know that I can execute a 'delete from' query, but the table is still there and it's annoying ...
0
votes
1answer
55 views
unique key/attribute/property in zodb
Very simple senario:
class User(Persistent):
def __init__(self, username, email):
self.username = username
self.email = email
I want to store the User instances in zodb by its username ...
0
votes
1answer
47 views
How to dynamical specify table fields name in objectDB on any other DB
I am using objectdb with jpa2. I want to let my users specify the fields of my entity. How do I do that?
For example say I have an entity named Animal and I want the user to be the one specifying the ...
1
vote
1answer
120 views
Open source object-database that work with Lazarus
I've been googling for object-databases that work with Lazarus but I've found nothing.
Has anyone know about an open-source object-database that work with it? Maybe something like db4o. Thanks in ...
0
votes
1answer
94 views
schemaless database for fast querying
Theres a system that stores logs in Oracle DB. The schema looks more or less like this:
CREATE TABLE "LOG_MESSAGE"
(
"ID" CHAR(16 BYTE),
"LOG_TYPE" CHAR(10 BYTE),
...
1
vote
1answer
66 views
Force db4o to call constructor
Is there any way to tell db4o to call class default constructor while activating objects? I tried following code but it didn't work:
private static void ConfigureDatabase()
{
var ...
2
votes
2answers
149 views
What is preferable way to pass objects between server and client?
Good day. I develop server-client application with Glassfish+ObjectDB(embeded mode) on serverside and Android application on client side. What is prefreable way (with respect to traffic and security) ...
0
votes
0answers
332 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
146 views
How to transform XML file into a class/object structure in Python?
I want to use an XML file containing a collection of objects (it is a GML file for GIS applications) as input in models i am developping. Herefore, i want to transform the objects in my XML file into ...
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. ...
-1
votes
1answer
80 views
What is an “Object Database” and when is it beneficial to use one? [closed]
I'm quite familiar with what I understand to be relational databases such as mysql where you have tables, rows, columns and joins to figure out how content relates.
Someone suggested I use an object ...
1
vote
2answers
137 views
How to realize persistence of a complex graph with an Object Database?
I have several graphs. The breadth and depth of each graph can vary and will undergo changes and alterations during runtime. See example graph.
There is a root node to get a hold on the whole graph ...
0
votes
3answers
245 views
Opensource library to save tree of java objects to db or file
I am looking for an opensource library which can be used to transparently save java objects(and their dependencies!) to file or db, a kind of snapshot.
Sample use case: I have the state of a game in ...
1
vote
2answers
255 views
Custom Realm for ObjectDB, using ObjectDB with HTTP Basic authentication
I want to implement HTTP Basic Authentication for my web services, but I also want to use ObjectDB to store credentials. Is there any way to do this? I guess I'm in the need of a custom realm, and ...
0
votes
1answer
65 views
object-database: Changing the class hierarchy
I am reading me into object oriented databases right know and have to make a little presentation.
Something I don't get and nowhere can find is following problem:
What happens with the data of the ...
2
votes
2answers
149 views
Looking for a webapp framework that does away with the database
I've been developing with Django during the last year or so and really
enjoy it. But sometimes I find that the ORM is a bit of a
straitjacket. All the data that I shuffle back and forth to the
...
1
vote
2answers
246 views
.NET Object Database Options?
Since Versant has just announced that they will be dropping .NET support for their object databases (and we just so happen to be mid-development with this product), we're looking for an alternative.
...
1
vote
1answer
203 views
Relationa database + ORM or Object oriented Database?
Suppose I want to make one application in Object Oriented Programing language let i.e. Java
what is the better thing to do from following?
--Either Use Relational Database i.e. mySQL + Object ...
8
votes
8answers
1k views
Web Development - Object db vs Relational db
Whats the cons and pros of using a object database or relational database for regular web development which involves a lot of CRUD?
UPDATE: I reopened the bounty reward in order to give Neville it.
2
votes
2answers
809 views
DB4O scalability
I'm looking for information about DB4O object database. I know it has client/server mode, but I have no idea how scalable it is. I'm a big lover of object db idea, but still couldn't find an ...
0
votes
2answers
296 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 ...
6
votes
5answers
2k views
Query language for python objects
I'm looking for a library that lets me run SQL-like queries on python "object databases". With object database I mean a fairly complex structure of python objects and lists in memory. Basically this ...
6
votes
4answers
3k views
List of Python Object Databases
I am looking for an object database for Python (no handmade pickles :D).
What are my options (besides the obvious ZODB)?
1
vote
3answers
172 views
Can ORM + relational DB be considered Object-Relational Database Management system?
I'm wondering why is ORM so popular and everybody is using ORM implementations of JDO and JDA specifications, instead of using object databases that implements these specifications as well. The ...
1
vote
4answers
463 views
Eloquera with ASP.NET MVC. Error
I am curious about using an object db so thought i'd give Eloquera a go.
I am having problems getting it running unfortunately. (running in "desktop mode")
I have done these steps as directed:
1) ...
1
vote
1answer
98 views
Have you used any object database in a web application? Could you share your experiences?
We are looking to rewrite a small web-application and would like to try out an object (not document) database like db4O or Eloquera. We have some experience with object databases, but these however ...
1
vote
1answer
60 views
How can an index be added to an Object Database in Data Nucleus?
I am using NeoDatis (DB4O is another similar Object DB) under DataNucleus.
I see a post on the NeoDatis forums on how to add a unique index on a class property (shown below):
ODB odb = ...
0
votes
1answer
150 views
Neodatis object DB / DataNucleus - How are indicies defined?
How do I define fields that I know I will be querying on to be indexed using Neodatis Object Database under DataNucleus?
The @Index annotation appears to only apply to ORM for relational databases by ...
3
votes
2answers
161 views
@Unique doesn't have any effect in DataNucleus w/ NeoDatis
Using JDO / DataNucleus / NeoDatis datastore
I added @Unique to a field of a persistable object, however I am allowed to create multiple objects which violate the unique constraint. The docs for ...
4
votes
2answers
344 views
Theory of Object Oriented databases [closed]
Please recommend some material about implementing Object-Oriented Databases for dynamic languages (interested in Ruby).
I realise that OODBs do not have a good mathematical foundation, but still the ...
3
votes
2answers
832 views
Are there any Object Databases for Ruby?
I cannot seem to find any Object Databases for Ruby (do not confuse with Document Oriented, like Coach and Mongo).
Do more or less mature OODBMSs for Ruby exist?
Thanks.
6
votes
1answer
581 views
Eloquera object database
I saw Eloquera db and was quite impressed with it. Currently I'm thinking developing my next project on Eloquera and not Sql Server. So I have several questions with it.
How does Eloquera performs ...
4
votes
1answer
448 views
When should I use an object database?
I have been using relational databases for some time now and recently came across a different type of database: object database. One of the products built around this idea had a description: A ...
-3
votes
3answers
300 views
Magical Object Database needed with .Net bindings
Lets assume im writing a program, my program has its own entities and such.
And since I'm using an OOP .Net language (C#, but could be F# or Iron Python), my objects have weird OOP traits like ...
13
votes
5answers
2k views
NoSQL / RDBMS hybrid with referential integrity (delete cascade)?
Is there a database out there that gives you the benefit of referential integrity and being able to use a SQL type language for querying, but also lets entities be loosely defined with respect to ...
0
votes
1answer
169 views
Please refer a GUI Modelling tools for a .Net object database?
I am planning to use an object database, say eloquera (http://eloquera.com/page/home.aspx).
If I use RDBMS as storage, there are a lot of GUI modelling tools.
But I cannot find one for object ...
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 ...
7
votes
2answers
696 views
Handling data maintenance in Object Databases like db4o
One thing I have continually found very confusing about using an object database like db4o is how you are supposed to handle complex migrations that would normally be handled by SQL/PL-SQL.
For ...
1
vote
4answers
1k views
Design a document database schema
I'm vainly attempting to learn how to use object databases. In database textbooks the tradition seems to be to use the example of keeping track of students, courses and classes because it is so ...
5
votes
2answers
496 views
How to store objects created in IronPython to object databases
I'd like to use object database to persist some classes created in IronPython. The database is db4o for .NET 2.0 (downloaded today). The code looks like this:
import clr
...
18
votes
6answers
4k views
What is the difference between graph-based databases and object-oriented databases?
What is the difference between graph-based databases (http://neo4j.org/) and object-oriented databases (http://www.db4o.com/)?
3
votes
4answers
3k views
Open Source .Net Object Database or Document Database for use in Hosted environment
I am looking at creating a web site and I want to try and learn either a Object Database or a Document Database. I am going to be using a hosting provider so I won't be able to install any software. ...
2
votes
5answers
404 views
Can the usual ORM solutions interact with OO databases?
For example, can Hibernate handle CouchDb?
What about support for other OO databases in other ORM solutions?
One of the (not that important) benefits of an ORM solution is the possible ability to ...
4
votes
2answers
738 views
Object Databases and C#
I have an application where my domain model just works. It's all very clear, clean and maps to objects very well. My problem is that it does not map to a relational database very well. With that in ...
2
votes
4answers
345 views
Why dont people simply use “Object Database”s?
Instead of JDO , Hibernate , iBATIS why we can not simply use "Object DataBases" ?
http://en.wikipedia.org/wiki/Comparison_of_object_database_management_systems
2
votes
3answers
650 views
Object Database, business intelligence and warehousing
Sorry if this seemed a novice question but I am new to the data warehousing and business intelligence world.
From what I have read I can see that a multidimensional database is needed due to ...
0
votes
2answers
93 views
Resources and guidelines for porting an object database + data to a relational database
Does anyone have any pointers to information on techniques for object database to relational database conversion?
I've done the standard searches and have only come up with Data Conversion from ...
