active questions tagged db4o+.net - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:25:36Z http://stackoverflow.com/feeds/tag/db4o+.net http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1620355/a-few-questions-about-working-with-db4o 2 A few questions about working with db4o Max 2009-10-25T08:26:52Z 2009-11-12T23:20:24Z <p>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 <a href="http://stackoverflow.com/questions/21207/db4o-experiences/24499#24499">http://stackoverflow.com/questions/21207/db4o-experiences/24499#24499</a> indicating that not everything that seems so easy is easy. </p> <p>Right now, I have some questions regarding on how db4o is used in real world apps. So if you have any experience in working (especially in web app context) with db4o, I would love to hear them.</p> <p>Here are my questions:</p> <p><strong>How do you manage object identity when working with db4o stored objects?</strong><br /> Coming from RDBMS background where you normally always have a primary key / identity column for every table, I cant imagine right now on how to manage object identity in db4o. </p> <p>For example, if I was working with NHibernate / mysql and needed to find a User object by id, I would do session.Load(primaryKey) and it will be retrieved by its PK. It is also very common that the PK is defined as auto increment in the table definition. </p> <p>As there is no such option in db4o, my thought was using a Guid struct in order to identify some objects in the object database. </p> <p><strong>Any tools to view the stored objects in the db?</strong><br /> Is there something like SQL Server Management Studio (probably less sophisticated) in the db4o world? I would like to view the already stored data / objects in the db file.</p> <p><strong>Are you screwed when renaming your domain objects?</strong><br /> As far as I know when you rename a class, any previously stored instances in the db cannot be retrieved anymore. Is there a way to work around this issue? How do you deal with updates against a live database which already contains many objects?</p> <p><hr /></p> <p>EDIT:</p> <p>I almost forgot this one:</p> <p><strong>Can I exclude properties from being saved to the DB?</strong><br /> If for example one domain object holds a reference to a (stateless) service object, then the service object will also be persisted if the domain object gets persisted, right? </p> <p>It seems a bit odd to have a service instace saved in the database, at least to me. Can you exclude the service instance from being saved? But if the domain object is retrieved again, how can I make sure that the service is also injected in the instance again?</p> http://stackoverflow.com/questions/1381213/db4o-object-update 1 Db4o object update Miguel Ping 2009-09-04T19:48:51Z 2009-10-23T10:00:03Z <p>Hi,</p> <p>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?</p> <p>Here's the code:</p> <pre><code>[Test] public void NonReferenceTest() { Aim localAim = new Aim("local description", null); dao.Save(localAim); // changing the local value should not alter what we put into the dao localAim.Description = "changed the description"; IQueryable&lt;Aim&gt; aims = dao.FindAll(); var localAim2 = new Aim("local description", null); Assert.AreEqual(localAim2, aims.First()); } </code></pre> <p>The test fails. Do I need to setup the db4o container in any special way? wrap it in commit calls? Thanks</p> http://stackoverflow.com/questions/1149725/execute-a-select-top-n-in-db4o 0 Execute a "SELECT TOP n" in DB4O Pedro Santos 2009-07-19T11:44:19Z 2009-09-18T20:02:31Z <p>Does anyone know how how to execute something like a "SELECT TOP n" in DB4O in C#</p> http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o 2 Querying by type in DB4O Shaharyar 2009-06-22T13:43:53Z 2009-06-22T14:43:09Z <p>How do you pass a class type into a function in C#?</p> <p>As I am getting into db4o and C# I wrote the following function after reading the tutorials:</p> <pre><code> public static void PrintAllPilots("CLASS HERE", string pathToDb) { IObjectContainer db = Db4oFactory.OpenFile(pathToDb); IObjectSet result = db.QueryByExample(typeof("CLASS HERE")); db.Close(); ListResult(result); } </code></pre> http://stackoverflow.com/questions/773187/two-different-net-applications-cant-access-the-db4o-file 0 Two different .NET applications can't access the db4o file virtualmic 2009-04-21T15:31:16Z 2009-04-21T15:34:43Z <p>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.</p> <p>When I access the same database (c:\pilot.db4o) file using these two applications, one after the other, each one is reflecting only the changes made by that application, even if those changes were made during the previous run.</p> <p>Why is each Application not seeing changes the other application made to the database file?</p> http://stackoverflow.com/questions/681926/why-does-the-stringcomparison-invariantcultureignorecase-not-work-with-this-db4o 1 Why does the StringComparison.InvariantCultureIgnoreCase not work with this Db4o linq query? boris callens 2009-03-25T14:47:03Z 2009-03-25T14:52:40Z <p>The following query works. I get the correct result back when I enter the name with a wrong casing.</p> <pre><code>private static IObjectContainer db = Db4oFactory.OpenFile(db4oPath); public static IQueryable&lt;Company&gt; GetCompaniesByName(string name) { return (from Company c in db where c.Name.ToLowerInvariant().Equals(name.ToLowerInvariant()) select c).AsQueryable(); } </code></pre> <p>The following query with the same parameter (basically the same unit test) returns no results. Mark the only difference is the where clause.</p> <pre><code> public static IQueryable&lt;Company&gt; GetCompaniesByName(string name) { return (from Company c in db where c.Name.Equals(name, StringComparison.InvariantCultureIgnoreCase) select c).AsQueryable(); } </code></pre> <p>Why?</p> http://stackoverflow.com/questions/300987/how-do-you-do-data-management-tasks-in-a-db4o-object-database 2 How do you do data management tasks in a Db4o Object Database? JC Grubbs 2008-11-19T04:28:00Z 2009-02-06T09:19:05Z <p>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 management tasks associated with development. Periodically I want to wipe out all of a certain Type in the DB, how do I do this without actually writing a method in code to do it and then running my app? Also, how do I address "schema" changes. If I change the definition of a particular class, does Db4o create a new "table" for it, or does it recognize it as the same Type with just a different set of members?</p> <p>Btw...I'm in .NET 3.5</p> http://stackoverflow.com/questions/313036/generic-class-used-as-constraint-to-generic-method-in-c 0 Generic class used as constraint to generic method in C#? Mike Moore 2008-11-23T22:18:05Z 2008-11-23T22:53:05Z <p>Am I doing something wrong or is it not possible to specify a generic class as a constraint to a generic method?</p> <p>I have been playing around with generics and <a href="http://developer.db4o.com/" rel="nofollow">db4o</a> (open source object database) and am writing a test program (see code below) to store and retrieve some user defined generic collections.</p> <p>I am attempting to write a generic method (see <strong>GetCollectionFromDb</strong> below) to retrieve a specifically typed collection from the database. Unfortunately, the code below returns a compiler generated error for the line:</p> <pre><code> MyCollection1 collection3 = GetCollectionFromDb&lt;MyCollection1&gt;(Collection1Name); </code></pre> <p>The error message is:</p> <pre><code>The type 'GenericsTest.MyCollection1'cannot be used as type parameter 'T' in the generic type or method 'GenericsTest.Program.GetCollectionFromDb&lt;T&gt;(string)'. There is no implicit reference conversion from'GenericsTest.MyCollection1' to 'GenericsTest.MyCollectionBase&lt;GenericsTest.MyCollection1&gt;'. </code></pre> <p>I would appreciate any suggestions as to what I may be doing wrong or how I could approach this differently to reach the deisred outcome.</p> <pre><code>using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using Db4objects.Db4o; namespace GenericsTest { public class Entity1 { public string SomeProperty { get; set; } } public class Entity2 { public string SomeProperty { get; set; } } public abstract class MyCollectionBase&lt;T&gt; : Collection&lt;T&gt; { protected MyCollectionBase() : this("") { } protected MyCollectionBase(string pCollectionName) { CollectionName = pCollectionName; } public string CollectionName { get; set; } } public class MyCollection1 : MyCollectionBase&lt;Entity1&gt; { public MyCollection1(string pCollectionName) : base(pCollectionName) { } public void DoSomeWorkOnCollection1() {} } public class MyCollection2 : MyCollectionBase&lt;Entity2&gt; { public MyCollection2(string pCollectionName) : base(pCollectionName) { } public void DoSomeWorkOnCollection2() { } } public class Program { public static IObjectContainer db = null; public static void Main(string[] args) { const string Collection1Name = "Entity1Collection"; const string Collection2Name = "Entity2Collection"; db = Db4oFactory.OpenFile("Test.db"); Entity1 entity1 = new Entity1(); MyCollection1 collection1 = new MyCollection1(Collection1Name); collection1.Add(entity1); db.Store(collection1); Entity2 entity2 = new Entity2(); MyCollection2 collection2 = new MyCollection2(Collection2Name); collection1.Add(entity1); db.Store(collection2); db.Commit(); db.Close(); db = Db4oFactory.OpenFile("Test.db"); MyCollection1 collection3 = GetCollectionFromDb&lt;MyCollection1&gt;(Collection1Name); } private static T GetCollectionFromDb&lt;T&gt;(string pCollectionName) where T : MyCollectionBase&lt;T&gt; { IList&lt;T&gt; queryResult = db.Query((T c) =&gt; c.CollectionName == pCollectionName); if (queryResult.Count != 0) return queryResult[0]; return null; } } } </code></pre>