db4o Developer Community

db4o open source object database, native to Java and .NET
Welcome to db4o Developer Community Sign in | Join
in Search
More Search Options

Browse by Tags

All Tags » db4o » programing   (RSS)
Showing page 1 of 2 (15 total posts)
  • Changes in Db4o configuration.....

    Hi, If you take a look in our svn repository you'll see that lots of changes were applied to configuration code (starting with version 7.7). Take it easy, we kept the ''old'' configuration interface in place; we just deprecated it, so update your code to use the new interfaces if you have the chance ;) In this post I'd like to discuss some ...
    Posted to planetdb4o (Weblog) by Anonymous on November 17, 2008
  • Running Sharpen tests faster...

    As you probably already know :), Sharpen is a tool (developed by db4o) that aims at easing development efforts by translating java source code into C#. This tools make it easier to provide native solutions in either Java/.Net platforms. While talking about how to run Sharpen test suite in this post I told that I'd show how to improve these ...
    Posted to planetdb4o (Weblog) by Anonymous on October 16, 2008
  • Implications of instrumenting assemblies for Transparent Activation / Persistence in db4o - Part I

    Hi, Just to let you know I've posted about Transparent Activation / Persistence to db4o blogs ;) Adriano
    Posted to planetdb4o (Weblog) by Anonymous on July 17, 2008
  • Do it yourself

    Hi, I'm a strong believer that the DIY (Dot it yourself) philosophy helps to improve knowledge on the topic you are working on. So if you If you are a developer using (or planing to use) db4o (and have the time), I highly recommend to try do build it yourself as explained here. One point that can be further explored is the possibility to run the ...
    Posted to planetdb4o (Weblog) by Anonymous on June 29, 2008
  • Type safe / refactor friendly configuration for Db4o - Part III

    Hi, In the first installment of this series I presented the idea of having a typesafe way to configure db4o. In the second one, I explored how we could use expression trees to figure out a property name being accessed. In this post I'll address the issue on how to dive into the property's IL (intermediate language) to come up with a field name ...
    Posted to planetdb4o (Weblog) by Anonymous on June 25, 2008
  • You are not paid to introduce bugs :)

    Hi, Today's post is in the series ''what is wrong with this code'' but before presenting the actual problematic code I want to give some background, so bear with me. At Db4o we run migration tests (regularly) in order to guarantee that we are able to load (and query) databases created by older versions of Db4o engine. The way it's accomplished ...
    Posted to planetdb4o (Weblog) by Anonymous on June 21, 2008
  • Running Sharpen Tests

    Hi. If you start using sharpen, you'll probably find some limitation / bug and, maybe, want to take a look into the issue. In this case the best approach (IMHO) would be to i) start a discussion in Sharpen Forum and, if appropriated (in the case there's no issue filed already), ii) file a new Jira issue into our issue tracking system. Next, ...
    Posted to planetdb4o (Weblog) by Anonymous on June 3, 2008
  • Type safe / refactor friendly configuration for Db4o - Part II

    In my last post I proposed to derive field names from a property accessor in order to gain type safety and compiler support when configuring some aspects of D4bo. So, given the following class:public class Test { private int _age; public int Age { get { return _age; } set { _age = value; } } }we could use the following ...
    Posted to planetdb4o (Weblog) by Anonymous on May 14, 2008
  • Linq Console Update

    Hi! I've just updated the Linq Console application! Now you don't need to copy your model assemblies to Linq Console folder anymore! You can use the load command as follow: :load ''c:\my projects\test\Test.Model.dll'' and the application will be able to load it :) The source code can be downloaded from our svn ...
    Posted to planetdb4o (Weblog) by Anonymous on May 10, 2008
  • Type safe / refactor friendly configuration for Db4o

    As of today, Db4o uses strings to reference fields in some scenarios such: SODA queries Configuration See the sample bellow: IConfiguration cfg = Db4oFactory.NewConfiguration(); cfg.ObjectClass(typeof(Test)).ObjectField(''_age'').Indexed = true;IMHO, using strings in these situations is sub-optimal as: Such solution relies in ...
    Posted to planetdb4o (Weblog) by Anonymous on May 1, 2008
1 2 Next >