> In one case that helps in another not.
> Also, if I do this:
> Projekt projekt = new Projekt();
> projekt.setPrimaryKey(new NumberKey(itemId));
> projekt.setNew(false);
>
> then projekt.getProjektParaDescId();
>
> is NOT returning the value that is in the corresponding row!
> How on earth is it possible to simply retrieve the value of an existing
row?
> This is so much of a simple task!
>
> Torque continues to drive me crazy sometimes as very simple tasks simply
> don't appear to work intuitively at all.
>
> Marc
>


Hi,

I think that you should do something like this:
Projekt projekt=ProjectPeer.retrieveByPk(new NumberKey(itemId));

Also regarding do Update i don't ever use this method only call
object.save().
The save method will decide that doInsert or doUpdate should be called.
Another thing do not set the primary key of an object try loading the object
insted by using the apropiate Peer.




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to