diff --git a/src/helma/objectmodel/db/Node.java b/src/helma/objectmodel/db/Node.java index 989f7d7f..811999cc 100644 --- a/src/helma/objectmodel/db/Node.java +++ b/src/helma/objectmodel/db/Node.java @@ -1245,7 +1245,7 @@ public final class Node implements INode, Serializable { */ public Enumeration properties () { - if (dbmap != null && dbmap.getProp2DB ().size() > 0) + if (dbmap != null && dbmap.isRelational() && dbmap.getProp2DB ().size() > 0) // return the properties defined in type.properties, if there are any return new Enumeration () { Iterator i = dbmap.getProp2DB().keySet().iterator();