Tagged Questions

0
votes
1answer
17 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 th …
1
vote
1answer
67 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: …
0
votes
2answers
105 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
51 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 as …
2
votes
4answers
151 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 …
1
vote
1answer
47 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 …
1
vote
3answers
498 views

db4o client/server appears to only be able to process one query at a time?

We're evaluating db4o (an OO-DBMS from http://www.db4o.com). We've put together a performance test for client/server mode, where we spin up a server, then hammer it with several c …
1
vote
1answer
165 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
1answer
93 views

isn’t the db4o .OpenFile method supposed to create the filestructure if it doesn’t exist?

When using Db4oFactiory.OpenFile("somename"); it was trying to drop the folder "somename" into the visual studio directory and getting denied permission. I solved this by giving it …
0
votes
0answers
65 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 …
0
votes
2answers
782 views

Generic class used as constraint to generic method in C#?

Am I doing something wrong or is it not possible to specify a generic class as a constraint to a generic method? I have been playing around with generics and db4o (open source obj …
0
votes
0answers
26 views

db4o Replication System: NullReferenceException?

Hi, I am trying to do standard bi-directional replication as follows. However, I get a NullReferenceException. This is a separate replication project. I did import the classes inv …