Questions tagged [xml-database]
38 questions
1
vote
1 answer
How can i delete last row in Datagridview, XML database?
when i try to delete last row on Datagridview and XML database i cant delete.
I can delete all of items normal but last row cant be deleted.
Here my delete button:
private void silbtn2_Click(object sender, EventArgs e)
{
XDocument x =…

Muhammed Sarıgül
- 17
- 5
1
vote
1 answer
view in EMC XDB "Xml data Base"
How can i create a logical view in EMC XDB ?
if any other solution rather than creating views , kindly inform me.
I want to eliminate using of joins in xquery statements as it affect on performance

Wael Elkholy
- 35
- 7
1
vote
0 answers
XML database with 'distance' queries
I want to store XML documents in a database, and perform queries such as:
"Elem1 with attribute attr1, with a sibling Elem2 with attribute attr2, with a distance of at most 2 between the siblings".
I know I can break this into two queries…

zmbq
- 38,013
- 14
- 101
- 171
1
vote
1 answer
How do XML Databases do deep queries?
I'm asking a question about how XML Databases work, but I'm going to give an example I understand on a standard relational database, in the hope people can explain how it works on an XML database.
Lets say our data…

Clinton
- 22,361
- 15
- 67
- 163
1
vote
2 answers
Using outer variables in an XQuery expression
I am using BaseX database server with a Node.js application. The application allows a user to input multiple strings in a textfield separated by a delimiter. These multiple strings are then to be queried to the XML file to search for nodes having…

alasin
- 172
- 3
- 15
1
vote
3 answers
jQuery Loop? Clone? Simply WHY?
NEW VERSION (not new problem...)
So, i got a "loop" problem with a .click(); and a .html();.
Retrieve XML datas: OK
function afficher(NomPizz, Prix1, Prix2, Prix3) {//HERE IS MY CODE//});
Print them to screen: OK
$('#pricecontainer').show();…

bZezzz
- 972
- 9
- 22
0
votes
1 answer
Optimal way to search large number of XML documents
I've got millions of XML documents in my filesystem and would like to query data from them fast. I'd be looking at getting data in one or multiple nodes.
I've looked at XML databases, but the ecosystem doesn't look very
mature ; I'm worried of…

Matthieu
- 316
- 4
- 14
0
votes
1 answer
Connecting to database without running server in Apache Xindice
I am new to "Apache Xindice". I tried some examples from the internet and it
worked, but I have to run the server before running my applications.This allows it to connect to the database.
I don't want to run the server because my application runs…

mehdi
- 686
- 2
- 9
- 21
0
votes
0 answers
When should I use XML files over Database? And if storing large data in XML files is inefficient, Does XML databases solve that problem?
I also read that parsing XML files is a painful process, why is that ?
As far as I know , Java provides parsing libraries such as DOM and SAX. Whats hard about using those libraries ? is it the size of the XML file that causes the problem ?

S113
- 1
0
votes
1 answer
RobotFramework : Query xml database : Not able to do a validation on the result set
When I do a query against xml database and getting the query results as [('Testing',)]. I want to do a simple check against this value to make sure it is same as what's being entered via UI .
Should be equal ${queryResults} Testing
But I…

mac
- 53
- 3
- 12
0
votes
2 answers
Storing XML Files in Database
I have to create a desktop application in Java 6. Program should be able to communicate with other system using XML files (sending/receiving). Every single XML file is connected with its XSD, tags describing its content, username and status of the…

monczek
- 1,142
- 2
- 13
- 28
0
votes
0 answers
Accessing XML using XQuery (within XQJ code) from a column in database table
I have created the following table in my locally installed Oracle database :-
CREATE TABLE "SYSTEM"."WAREHOUSES"
( "WAREHOUSE_ID" NUMBER NOT NULL ENABLE,
"WAREHOUSE_SPEC" CLOB,
CONSTRAINT "WAREHOUSES_PK" PRIMARY KEY…

user6276653
- 140
- 1
- 2
- 11
0
votes
1 answer
Import XML file in Oracle XML DB Repository
I am new to XML databases. I have the following XML file (employees.xml) :-

user6276653
- 140
- 1
- 2
- 11
0
votes
2 answers
Timeout expired. Problem in Exporting xml to sql server 2008 data table - .net
I am exporting xml data to sql server 2008 database.
.net code: How to pass XML from C# to a stored procedure in SQL Server 2008?
Query to insert: Querying a xml in sql server 2008
Everthing is working fine if the file size is small. Now the xml…

Geeth
- 5,282
- 21
- 82
- 133
0
votes
1 answer
xml data model for a health database?
As part of my university assignment I have to create a xml data model for electronic health monitoring and record keeping, now I understand the concept of XML and the basic structures, however I am a little confused regarding the best way to…

Aahil Akbar
- 9
- 2