0
votes
0answers
9 views
Can you recommend a good resource for configuring db40 on Mono / Open SUSE?
The db40 forums seem to have sparse activity. I am seeking a blog post, article, or your input on how you installed and configured db40 for Mono on the Open SUSE / Ubuntu platform. I am a Linux n00b …
2
votes
4answers
97 views
Db4o query: find all objects with ID = {anything in array}
I've stored 30,000 SimpleObjects in my database:
class SimpleObject
{
public int Id { get; set; }
}
I want to run a query on DB4O that finds all SimpleObjects with any of the specified IDs:
…
3
votes
2answers
80 views
Is Using Db4o For Web Sites a judicious choice?
Is using Db4o as a backend datastore for a Web site (ASP.NET MVC) a judicious choice as an alternative to MS SQL Server ?
2
votes
1answer
44 views
A few questions about working with db4o
I am trying the db4o object databse and so far I quite like what I am seeing, but I also read this post on stackoverflow http://stackoverflow.com/questions/21207/db4o-experiences/24499#24499 …
0
votes
1answer
7 views
Client Server Assembly Missing? Db4Objects 7.4
I have downloaded the current version of Db4Objects (7.4) and installed it. It appears to be missing the Client Server assembly Db4objects.Db4o.CS.dll
Does anyone know if Client Server has changed …
1
vote
1answer
83 views
Db4o object update
Hi,
I'm using db4o for a simple app, with an embedded db. When I save an object, and then change the object, is it suppose that db4o returns the changed object?
Here's the code:
[Test]
public …
1
vote
1answer
54 views
Improve db4o linq query
Hello,
I got a problem with this linq query:
from PersistedFileInfo fi in m_Database
from PersistedCommit commit in m_Database
where commit.FileIDs.Contains( fi.ID )
where fi.Path == <given …
0
votes
1answer
67 views
DB4O with Silverlight RIA Services
Hello,
I've considered using the db4o OODBMS with a recent Silverlight / RIA Services project, but there's one point that I could use some advice on - how to make associations work. RIA Services …
0
votes
0answers
29 views
How can I stop “.\null\logs” folder being created?
My Java 6 console app is creating an empty ".\null\logs" folder when I run it. I've tracked this down to being caused by db4o. Why is this being created, and is there any way that I can prevent it …
0
votes
2answers
112 views
Execute a “SELECT TOP n” in DB4O
Does anyone know how how to execute something like a "SELECT TOP n" in DB4O in C#
0
votes
1answer
54 views
Opening objects with a renamed namespace/assembly in db4o
I have a set of objects in db4o format in a .dat file. The objects in that file are OldNamespace.MyObject, OldAssemblyName.
The problem is I've sinced renamed the namespace and assembly to something …
3
votes
6answers
325 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 …
0
votes
1answer
124 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 reading and writing to the …
2
votes
4answers
156 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 PrintAllPilots("CLASS HERE", …
0
votes
1answer
30 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 contains two dates, …
