Support Forum

Ask questions and get help from MobileTogether experts.
MobileTogether Product Information
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
View
Go to last post Go to first unread
jge  
#1 Posted : Tuesday, August 26, 2014 3:52:42 PM(UTC)
jge

Rank: Advanced Member

Groups: Registered
Joined: 7/31/2014(UTC)
Posts: 40
Location: sterling, VA

when use Append Node, should we use DB\RowSet or DB\RowSet\Row?
bbv  
#2 Posted : Tuesday, August 26, 2014 4:33:33 PM(UTC)
bbv

Rank: Administration

Groups: Registered, Administrators
Joined: 7/21/2014(UTC)
Posts: 494

Was thanked: 87 time(s) in 87 post(s)
The Append Node will add a new child node to a parent. I.e. if you want to add a new Row to a RowSet, then you write

Code:
Append to Node  $MY-DB/DB/RowSet
   new Node(s)  Row


whereas the Insert Node will add a new child node before other child. So, in order to insert a new Row before a third existing Row, you would write

Code:
Insert before Node  $MY-DB/DB/RowSet/Row[3]
       new Node(s)  Row


The reason why we cannot use a child node for Append, because this action must also work when there was no child node before insertion.


Altova MobileTogether Experts
Users browsing this topic
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.