Reputation: 31
Is there any command or JAVA API option to get name list of documents available in the container.
Upvotes: 2
Views: 60
Reputation: 136
There is an XQuery command you can run:
for $x in collection("users.dbxml") return dbxml:metadata('dbxml:name', $x)
Upvotes: 0