2
votes
5answers
79 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 …
0
votes
1answer
14 views
db4o running in asp.net Medium Trust environment
I am using the embedded client/server version of db4o (I called OpenServer() instead of OpenFile() method) so that I can host an asp.net website that will have several users readin …
2
votes
4answers
59 views
Querying by type in DB4O
How do you pass a class type into a function in C#?
As I am getting into db4o and C# I wrote the following function after reading the tutorials:
public static void PrintAllPi …
2
votes
1answer
25 views
Saving images or pdfs in db4o
I know it is not a good thing to save files in a relational databas.
But how about in a objectdatabase?
Is it still a bad idea or are they more adapted for this kind of operations? …
3
votes
2answers
48 views
How does db4o instantiate objects ?
What mechanism does db4o use to instatniate stored objects ?
My class isn't Serializable and doesn't provide zero argument constructor and the only constructor throws NullPointerE …
0
votes
0answers
8 views
db4o querying subobject
I've just started with db4o and I stumbled on to a problem.
I have an object with a subobject (it is probably not the correct word but I hope you get what I mean).
The subobject …
1
vote
4answers
365 views
How to disable Java security manager?
Is there any way to completely disable Java security manager?
I'm experimenting with source code of db4o. It uses reflection to persist objects and it seems that security manager …
1
vote
0answers
14 views
Trouble with db4o…objects aren’t returned after an IIS reset/container is out of scope.
So I'm probably doing something tragically wrong with db4o to cause this issue to happen...but every time I reset my context I lose all of my objects. What I mean by this is that …
0
votes
0answers
11 views
db4o to preserve identity of objects.
Is there a way to preserve an objest identity in db4o.
Suppose I store a BigDecimal in embedded db4o.
When I read it twice I get two distict objects with the same value (which is …
11
votes
4answers
731 views
db4o experiences?
I'm currently trying out db4o (the java version) and I pretty much like what I see. But I cannot help wondering how it does perform in a real live (web-)environment. Does anyone ha …
3
votes
2answers
69 views
Any competitors to db4o on compact framework?
We've been trying db4o for persisting objects on the compact framework. It works very well from our tests so far. However, it appears they are on the expensive side for small start …
7
votes
12answers
470 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 w …
0
votes
0answers
26 views
Two different .NET applications can’t access the db4o file
I have just downloaded and and am using db40 7.9 and am testing it on two different .NET 3.5 applications using the supplied tutorial.
When I access the same database (c:\pilot.db …
1
vote
1answer
63 views
Why does the StringComparison.InvariantCultureIgnoreCase not work with this Db4o linq query?
The following query works. I get the correct result back when I enter the name with a wrong casing.
private static IObjectContainer db = Db4oFactory.OpenFile(db4oPath);
publi …
0
votes
2answers
55 views
Conditional clauses for linq to Db4O query?
In linq to sql i can do like this:
var q = db.Colors;
if(! string.IsNullOrEmpty(colorName))
q = q.Where(c=>c.Name.Equals(colorName));
return q.ToList();
In Db4O linq I can …
