Questions tagged [berkeley-db-xml]

Berkeley DB XML is a C++ library that enables XML data storage and XQuery and XPath queries.

Berkeley DB XML is part of the Oracle Berkeley DB family of products. It is a C++ library that links into your application, enabling XML data storage and XQuery and XPath queries. It provides C++ & Java APIs and support for several scripting languages. It supports transactional and non-transactional operations, XML and/or key-value data storage and High Availability via replication. It's designed to be small, highly performant, reliable and scalable.

You can find more information about Berkeley DB XML in the following locations:

Product Homepage

Downloads

FAQ

Documentation

Primary technical discussion forum

.NET Implementation

32 questions
0
votes
1 answer

How to get name list of documents from XML DB

My application transfers XMLs to Berkeley XML DB with names autogeneration. When I have for example 1000 documents in DB, how can I get name list of documents? I can only count them by using: query 'collection("myDB.dbxml")' after 'print' console…
0
votes
2 answers

XQuery how to get whole xml document with WHERE query

I have XML db with only one collection (container) and I don't know the document names. How to get a entire XML document from db, which complies WHERE clause? My Content
1 2
3