Tagged Questions

16
votes
3answers
916 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 db4o experiences? indicating that not everything that seems so easy is easy. ...
8
votes
3answers
1k views

Recommend a good db4o viewer

I'm playing around with db4o, and I have the Object Manager viewer thingy for Visual Studio. It seems okay, but not exactly on par with tools like HeidiSQL/SQL Studio/etc., not to mention that it ...
5
votes
2answers
401 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 ...
3
votes
2answers
328 views

Working with large collections in db40 (.net)

I would like to use db4o as the backend of a custom cache implementation. Normally my program involves loading into memory some 40,000,000 objects and working on them simultaneously. Obviously this ...
3
votes
1answer
204 views

DB4o Linq query - How to check for null strings

var q = (from SomeObject o in container where o.SomeInt > 8 && o.SomeString != null //Null Ref here select o; I always get a null reference exception. If I use ...
2
votes
1answer
97 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
126 views

Replacing a db4o stored object with an instance of a subclass

I want to change all objects that match a condition to use a specific/new subclass. There are no other subclasses being used with the stored objects, so its in all cases a change from the base class ...
2
votes
2answers
342 views

How to stores and Pictures in Db40?

I want to stores fotos use DB4o and a tried de following code: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; ...
2
votes
0answers
162 views

Using db4o with multiple application instances under medium trust

I recently stumbled over the object database engine db4o which I think looks really interesting. I would like to use it in an ASP.NET MVC application that will be deployed to a shared hosting ...
2
votes
1answer
251 views

Lambda syntax in linq to db4o?

I know the following is possible with linq2db4o from Apple a in db where a.Color.Equals(Colors.Green) select a What I need however is something that allows me to build my query conditionally (like ...
2
votes
4answers
655 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", ...
2
votes
1answer
754 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); public static ...
2
votes
1answer
269 views

How do you do data management tasks in a Db4o Object Database?

I'm new to OODBMS systems, but I'm using Db4o on a new project for which it's perfectly suited. Things are going great and I really like the concept, but I'm struggling with how to do basic data ...
1
vote
1answer
53 views

Class design for a media manager application usig Db4o for efficient querying

I am a novice programmer and need some help with class design for my application. We are working on the design of a media manager desktop application (using .NET Framework 4.0) . The application ...
1
vote
1answer
40 views

How to efficiently retrieve every Nth object from DB4O ordered on an indexed field

I store a lot of events in a DB4O db. The events are timestamped and I've indexed the field. Retrieving (an enumerator of) all events, ordered by timestamp, takes almost no time at all (as they aren't ...
1
vote
1answer
66 views

db4o How to rename class via configuration

I am using db4o in two seperate projects that share the same classes but not the same .dll . I am fixing this so that they share the same .dll but I need to rename the classes. According to the ...
1
vote
2answers
212 views

Retrieve an object in one DB4O session, store in another ('disconnected scenario')

I am trying to figure out how to keep an object useable between client sessions in DB4O. From what I understand, once a client session is closed, the object no longer resides in any cache and despite ...
1
vote
2answers
144 views

db4o - ignore specific class property

Is there a way (meta property maybe) to tell db4o to simply ignore a specific property of a class? I can't see anywhere to do that.. For my purpose I have a bunch of data entity that i need to ...
1
vote
1answer
108 views

Scalable freetext & parametric searching (C#)

Currently, we've got an application that needs to perform very fast searches on ~2 mill records. Searches need to search both a large free-text field, and a number of integer/decimal fields between ...
1
vote
1answer
118 views

How to register for callbacks on a DB4O server?

I have a DB4O server listening on a port IObjectServer server = Db4oClientServer.OpenServer("filename.db40", 11978); How do i register for callbacks? For example how do i execute some ...
1
vote
1answer
338 views

How to use db4o IObjectContainer in a web application ? (Container lifetime ?)

I am evaluating db4o for persistence for a ASP .NET MVC project. I am wondering how I should use the IObjectContainer in a web context with regards to object lifetime. As I see it, I can do one of ...
1
vote
1answer
33 views

Stored IEnumerable dissapears on restart debug, but recreating IObjectServer and IObjectClient in one unit test is ok

I'm storing an IUser object in a Db4o database as follows (client is an IObjectClient): public Guid AddUser(IUser user) { lock (userLock) { user.Id = Guid.NewGuid(); ...
1
vote
1answer
656 views

Db4o object update

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 void ...
1
vote
2answers
373 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
2answers
98 views

Can I query db4o for all objects implementing some interface?

i have a problem with db4o and I wanna know is it feature or bug. Let's see some code private interface IInterface {} private class SimpleObject : IInterface {} ...
0
votes
1answer
156 views

db4o in .NET: Properties or Fields?

I'm starting out with db4o in .NET 4.0. Should I be using fields or properties for persistent objects? I understand that to use the [Indexed] attribute for unique IDs, I need to use a field. How do I ...
0
votes
2answers
100 views

which specific conditions could cause a db4o's native query transformation bug?

This fails: var results = container.Query<SomeClass>(s => s.Field == value && s.AnEnumField != SomeEnum.AnEnumValue ); Assert.AreEqual(1, results.Count); But this doesn't: ...
0
votes
2answers
118 views

how to check for an empty collection in a db4o's SODA query

As the title says, is there a way to check for an empty collection in a SODA query? I can check if the collection field is set to null and check property values in the collection elements, but don't ...
0
votes
1answer
90 views

determining when a db4o backup has finished

How can I know when a db4o started from code has finished? Doc mentions it does the backup in a separate thread, but doesn't mention anything about when it finishes. The method doesn't receives any ...
0
votes
1answer
41 views

Using Windows Integrated Authentication when connecting to db4o in .net?

When opening a client against a db40 server it seems to expect a user name and password Db4oFactory.OpenClient(string hostName, int port, string user, string password); Is there any way of using ...
0
votes
4answers
224 views

Prevent orphaned objects in DB4O when updating fields

I want to store Person objects in DB4O. The Person Location field can be changed over time. So I retrieve a person from the DB and call a method to set the location field to a new Location object. (I ...
0
votes
2answers
209 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.db4o) file using these ...
0
votes
2answers
4k 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 object database) and am ...