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 » SODA   (RSS)
Showing page 1 of 4 (36 total posts)
  • Re: Soda date equals issue

    Thanks, but this seems to be a workaround. What would be the solution ?
    Posted to db4o User Forum (Forum) by gwadkar on October 21, 2008
  • Soda date equals issue

    hi, Let say i have myObject with field birthdate like 2008-10-20 9:00:00 ( yyyy-MM-dd HH:mm:ss). My Soda query goes like query.descend(''birthdate'').constrain(simpledateFormat.parse(''2008-10-20'')).equals(). // simple date format = yyyy-MM-dd This query does not return myObject, unless I include the exact time in the constraint. ...
    Posted to db4o User Forum (Forum) by gwadkar on October 21, 2008
  • Error in soda query or evaluation

    Hi I have found a posible error  in the soda query engine. When performing a query including an ''or'' opperation the field index will not be used and thereby the query is not optimized. If the or is replaced by an ''and'' opperation the filed index is used and the query is optimized.   Query q = container.query(); ...
    Posted to db4o User Forum (Forum) by f_kasper on September 23, 2008
  • Bedeutung von SODA

    Hi! Schreibe gerade meine Diplomarbeit und db4o ist ein Teil davon. Da man in der Diplomarbeit jede Abkürzung ausschreiben muss, suche ich nun nach der Bedeutung von SODA, finde aber nix. Wofür steht SODA? Oder ist es vielleicht garkeine Abkürzung?   Vielen Dank,  Dominik 
    Posted to German (Forum) by Hanswurst111 on August 23, 2008
  • Use of Contains with SODA and Native Queries. Activation of all elements

    I don't understand why the execution of a query through a collection, like the following one, must activate all the elements of the collection, if I'm using the identity constrain. Firstly 'pilot' has been retreived from the database. query.Descend(''_pilots'').Constrain(pilot).Identity()Besides, if I try to use Native Query, ...
    Posted to db4o User Forum (Forum) by dprado on July 5, 2008
  • java types to use in soda query

    what types (or clas) i can use in soda query to aply greater, equal and less constrain? is possible to use constrain to custom types? 
    Posted to db4o User Forum (Forum) by wafeneto on June 9, 2008
  • Dispatcher Fehler bei db4o 6.4.14.8131

    Hallo, Ich nutze db4o im Client/Server Modus. Beim Lesen erhalte ich zwischendurch folgende Fehlermeldung. [CODE] Exception in thread ''db4o server message dispatcher db4o'' java.lang.NullPointerException        at com.db4o.internal.UUIDFieldMetadata.addFieldIndex(Unknown ...
    Posted to German (Forum) by McMicS on March 21, 2008
  • SODA Abfrage auf byte-Array

    Hallo,hier mein Post bezüglich SODA-Abfragen noch auf Deutsch. Ist es möglich ein SODA-Abfragen auf ein byte-Array zu machen ohne Evaluations zu benützen?Test-Klassepublic class TestObject { private byte[] field;}Abfrage:Query aQuery = ...
    Posted to German (Forum) by LNeukom on March 17, 2008
  • SODA query on byte array

    Hi,is there a way to compare a byte array with soda without using evaluations? Got a class:public class TestObject {  private byte[] field;}And the query:Query aQuery = anObjectContainer.query(); aQuery.constrain(TestObject.class); aQuery.descend(''field'').constrain(aByteArray).equal();Which causes:Exception in thread ''main'' ...
    Posted to db4o User Forum (Forum) by LNeukom on March 17, 2008
  • SODA query seems to fail for lazy initialised field

    Here a part of the class hierarchy that I'm persisting: abstract class AbstractViewNode implements ViewNode {    private String _path;    public final String getPath() {        if (_path == null) {            _path = ...    ...
    Posted to db4o User Forum (Forum) by tatjana.kostic@ch.abb.com on March 17, 2008
1 2 3 4 Next >