dbxml

Embeddable XML database with XQuery and advanced query support.

brewmacoslinux
Try with needOr install directly
Source

About

Embeddable XML database with XQuery support and other advanced features

Commands

dbxmldbxml_load_containerdbxml_dump_container

Examples

query XML documents using XQuery language$ dbxml> query 'for $doc in collection() where $doc/root/item/@id="123" return $doc'
store XML files into a database container$ dbxml_load_container -h mydbenv -c mycontainer document.xml
open interactive shell to manage XML database$ dbxml
export XML documents from database to file$ dbxml_dump_container -h mydbenv -c mycontainer > backup.xml
create and search full-text index on XML elements$ dbxml> createIndex '' item fulltext default