Hmm, don't know exactly. I think mapping should work with and without namespaces and also mixed. I've used only the 'xml' namespace mixed with non namespace...
2508
Ashish Tayal
moonx_1999
Sep 26, 2002 5:01 am
Hi all, I am new to this middleware mapping concept. The idea seems fantanstic. Can some one tell me or point to me to the relevant links for: 1. The format of...
2509
zixuan9
Sep 26, 2002 4:41 pm
Hi there, I am trying to work out the XMLDBMS samples for transferring data from database to a XML document. The following command worked. java Transfer -toxml...
2510
Peter V. Mikhalenko
gryzlo2000
Sep 28, 2002 2:03 pm
Hello! What configuration of maps and actions must I have to insert data from one XML to several different tables? Suppose there is such an XML: <message> ...
2511
bdaici
Oct 8, 2002 10:38 pm
I modified the original orders.dtd (XMLDBMS 2.0) as follows: original: <!ELEMENT Price (#PCDATA)> modified: <!ELEMENT Price (#PCDATA)> <!ATTLIST Price priceatt...
2512
bdaici
Oct 9, 2002 2:51 am
In order to make the XMLDBMS MapManager work with the modified orders.dtd I made the following change into the ...
2513
rpbourret@...
xmldbms
Oct 14, 2002 8:58 am
Sorry I have not answered sooner. I have been traveling and have not been on email. This is a known bug when using Microsoft SQL Server. There are two...
2514
ruairi higgins
ruairih
Oct 14, 2002 9:05 am
would like to know if anyone has a work around or knows of a solution to this. Thanks Ruairi ... generic...
2515
rpbourret@...
xmldbms
Oct 14, 2002 9:18 am
... I will think about this. Using DOM 2 was an explicit design decision in v2.0. Is there a reason you can't use DOM 2? Also, does your parser support SAX 1...
2516
rpbourret@...
xmldbms
Oct 14, 2002 9:24 am
There is probably a workaround. (This may even be a bug.) Some of the code that builds SQL statements calls methods in DatabaseMetaData that have catalog...
2517
rpbourret@...
xmldbms
Oct 14, 2002 10:02 am
This is probably a bug. '_' is a wildcard character (so is '%') and the code should escape it, but it might not. Can you please send the commands/code you use...
2518
rpbourret@...
xmldbms
Oct 14, 2002 10:24 am
... See the DTD that is shipped with XML-DBMS. For version 1.x, this is xmldbms.dtd. For version 2.0, this is xmldbms2.dtd. For a tutorial about how to use the...
2519
rpbourret@...
xmldbms
Oct 14, 2002 10:30 am
This is a known bug. It usually occurs only when you are using JDK 1.3. To solve it, use JDK 1.1.x or 1.2, OR do the code fixes in: ...
2520
rpbourret@...
xmldbms
Oct 14, 2002 10:43 am
This is not supported. A given element or attribute may only be mapped to a single column. That said, an element or attribute value *is* inserted into multiple...
2521
Peter V. Mikhalenko
gryzlo2000
Oct 15, 2002 12:24 pm
Hello, Ron! ... r> I will think about this. Using DOM 2 was an explicit design decision r> in v2.0. r> Is there a reason you can't use DOM 2? Also, does your...
2522
qfhe
Oct 16, 2002 3:10 am
I got the following exception: de.tudarmstadt.ito.xmldbms.InvalidMapException: More than one property is mapped to the table recipient-description I modified...
2523
ruairi higgins
ruairih
Oct 16, 2002 12:57 pm
Here is the entire stack trace : interbase.interclient.DriverNotCapableException: [interclient] Unsupported feature: InterBase does not support catalogs. See...
2524
qfhe
Oct 19, 2002 2:32 pm
I got another problem when using MapManager even when I removed the db.props. java.lang.IllegalArgumentException: Argument uris must not be null when the qual ...
2525
qfhe
Oct 19, 2002 6:36 pm
Actually I got this error for the following part in my DTD: <!-- *********** RECIPIENT ************ --> <!ELEMENT RECIPIENT (EXTENSION*, (ours ... EXTENSION*)>...
2526
mvbabu
Oct 21, 2002 10:57 pm
Hi, I am evaluating whether I can use this product for my project. I have an empoyee table, which has a bunch of self-referencing data (Employee->Manager...
2527
Jarek Woloszyn
yossaaa
Oct 24, 2002 5:12 pm
I'm testing xml-dbms and I have a few problems: 1) it doesn't work with oracle When I try to generate map file i get: E:\jsdk92;xml\xmldbms92;samples>java...
2528
Jarek Woloszyn
yossaaa
Oct 24, 2002 7:09 pm
solved. I didn't set SCHEMA property and escapeDBName function had null argument (name). Now I get crate table statements, but they are not good: CREATE TABLE...
2529
Alainzh
Oct 30, 2002 7:19 am
I have used the command line to generate map file and dtd file from oracle database,but the generated map file is wrong,because there is no even one column in...
2530
Ronald Bourret
xmldbms
Oct 30, 2002 6:16 pm
The problem here is as Peter says: you need to declare the namespaces you are using in your map file and in the XML document. Except for the namespace stuff,...
2531
Ronald Bourret
xmldbms
Oct 30, 2002 6:30 pm
I checked the code. The code to escape wildcards (- and %) has been in MapFactory_Database since the beginning. Could you tell me what is incorrect in the map...
2532
Ronald Bourret
xmldbms
Oct 30, 2002 11:41 pm
Thanks for the fix. I've added it to the CVS tree. -- Ron...
2533
tincan212000
Oct 31, 2002 5:18 pm
Hi, I am new to this group and XML-dbms as well. I just tried the transfer sales.map example and this is what I got: java Transfer -todbms mysales.map...
2534
Ronald Bourret
xmldbms
Nov 1, 2002 6:40 am
You do not need to worry about these warnings. Although the methods have been deprecated, they are still available. Version 2.0 uses the new version of SAX and...
2535
Ronald Bourret
xmldbms
Nov 1, 2002 6:42 am
The problem is caused by the fact that the recipient-description element is used in more than one parent element, and it occurs multiple times (* operator) in...
2536
Ronald Bourret
xmldbms
Nov 1, 2002 7:29 am
1) XML-DBMS supports self-referencing data. To map this, you simply create a RelatedMap within a ClassMap that points to itself -- that is, the same ClassMap. ...