I assume this worked before but changed in a recent release of Sedna (currently 2.1.12) but metadata values are now '$' instead of '$.xml'
So the two instances of doc("$version.xml") in adapter.py must now read doc("$version")
Thanks!
Hello,
First, thanks for a much needed hook into Sedna!
While testing out SednaPy, I noticed the program would hang when sending invalid XQuery's (ones with no result set).
I think I found where things are going wrong. The function fetchone(), in the first condition, is trying to fetch the next row (self._getItem()) instead of returning nothing (None).
The only problem with this fix...