Tagged Questions
Berkeley DB XML is a C++ library that enables XML data storage and XQuery and XPath queries.
5
votes
7answers
2k views
Is Berkeley DB XML a viable database backend?
Apparently, BDB-XML has been around since at least 2003 but I only recently stumbled upon it on Oracle's website: Berkeley DB XML. Here's the blurb:
Oracle Berkeley DB XML is an open source, ...
3
votes
1answer
268 views
Could you make a case for using Berkeley DB XML
I'm trying to read through the documentation on Berkeley DB XML, and I think I could really use a developer's blog post or synopsis of when they had a problem that found the XML layer atop Berkeley DB ...
1
vote
2answers
93 views
How to put multiple documents into Berkeley-DB XML container?
I have a directory with a bunch of XML documents and want to put all of them into a container.
In other words, I need to do something like this:
dbxml> putDocument tests/*.xml
I have written a ...
1
vote
1answer
255 views
Oracle - Berkeley DB XML Java API - XML query to get attribute values at multiple level
Evaluating Berkeley DB with Java APIs. Following is one of my test XML data:
<master>
<env name="development">
<server name="tomcat1" ip="122.122.123.1">
...
0
votes
2answers
252 views
XML BerkeleyDB with C#
I would like to use C# as a wrapper application for Oracle Berkeley XML database.
I tried to find how to do this on the Internet but could not.
Basically, I am a new user for this kind of native XML ...
0
votes
1answer
75 views
Should use Berkeley DB XML without an on disk container?
I am considering to use BDB XML, as in memory application data store. It is XML like data with definition records and data records, i have provided XPath like quiring for data access. Its running well ...
0
votes
1answer
292 views
Django + dbxml + Apache = problems. Any solutions?
I'm trying to set up a Django application using WSGI. That works fine. However, I am having some issues with part of my Django app that uses BDB XML. My Apache config is as follows:
Listen 8000
...