From f9386a2286b654bb8ecd315b34bcf1e28983bb21 Mon Sep 17 00:00:00 2001 From: hns Date: Sat, 4 Aug 2001 11:41:26 +0000 Subject: [PATCH] GetString now returns the foreign key for node properties. linking to something other than the primary key is probably (still) broken. --- src/helma/objectmodel/db/Property.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/objectmodel/db/Property.java b/src/helma/objectmodel/db/Property.java index 0d47e006..2ffc11c6 100644 --- a/src/helma/objectmodel/db/Property.java +++ b/src/helma/objectmodel/db/Property.java @@ -303,7 +303,7 @@ public final class Property implements IProperty, Serializable, Cloneable { case FLOAT: return Double.toString (dvalue); case NODE: - return nhandle.toString (); + return nhandle.getID (); case JAVAOBJECT: return jvalue.toString (); }