Search the web
Sign In
New User? Sign Up
xml-dbms
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2511 - 2540 of 3864   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2511
I modified the original orders.dtd (XMLDBMS 2.0) as follows: original: <!ELEMENT Price (#PCDATA)> modified: <!ELEMENT Price (#PCDATA)> <!ATTLIST Price priceatt...
bdaici
Online Now Send Email
Oct 8, 2002
10:38 pm
2512
In order to make the XMLDBMS MapManager work with the modified orders.dtd I made the following change into the ...
bdaici
Online Now Send Email
Oct 9, 2002
2:51 am
2513
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...
rpbourret@...
xmldbms
Offline Send Email
Oct 14, 2002
8:58 am
2514
would like to know if anyone has a work around or knows of a solution to this. Thanks Ruairi ... generic...
ruairi higgins
ruairih
Offline Send Email
Oct 14, 2002
9:05 am
2515
... 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...
rpbourret@...
xmldbms
Offline Send Email
Oct 14, 2002
9:18 am
2516
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...
rpbourret@...
xmldbms
Offline Send Email
Oct 14, 2002
9:24 am
2517
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...
rpbourret@...
xmldbms
Offline Send Email
Oct 14, 2002
10:02 am
2518
... 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...
rpbourret@...
xmldbms
Offline Send Email
Oct 14, 2002
10:24 am
2519
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: ...
rpbourret@...
xmldbms
Offline Send Email
Oct 14, 2002
10:30 am
2520
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...
rpbourret@...
xmldbms
Offline Send Email
Oct 14, 2002
10:43 am
2521
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...
Peter V. Mikhalenko
gryzlo2000
Offline Send Email
Oct 15, 2002
12:24 pm
2522
I got the following exception: de.tudarmstadt.ito.xmldbms.InvalidMapException: More than one property is mapped to the table recipient-description I modified...
qfhe
Offline Send Email
Oct 16, 2002
3:10 am
2523
Here is the entire stack trace : interbase.interclient.DriverNotCapableException: [interclient] Unsupported feature: InterBase does not support catalogs. See...
ruairi higgins
ruairih
Offline Send Email
Oct 16, 2002
12:57 pm
2524
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 ...
qfhe
Offline Send Email
Oct 19, 2002
2:32 pm
2525
Actually I got this error for the following part in my DTD: <!-- *********** RECIPIENT ************ --> <!ELEMENT RECIPIENT (EXTENSION*, (ours ... EXTENSION*)>...
qfhe
Offline Send Email
Oct 19, 2002
6:36 pm
2526
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...
mvbabu
Online Now Send Email
Oct 21, 2002
10:57 pm
2527
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:\jsdk\xml\xmldbms\samples>java...
Jarek Woloszyn
yossaaa
Offline Send Email
Oct 24, 2002
5:12 pm
2528
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...
Jarek Woloszyn
yossaaa
Offline Send Email
Oct 24, 2002
7:09 pm
2529
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...
Alainzh
Offline Send Email
Oct 30, 2002
7:19 am
2530
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,...
Ronald Bourret
xmldbms
Offline Send Email
Oct 30, 2002
6:16 pm
2531
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...
Ronald Bourret
xmldbms
Offline Send Email
Oct 30, 2002
6:30 pm
2532
Thanks for the fix. I've added it to the CVS tree. -- Ron...
Ronald Bourret
xmldbms
Offline Send Email
Oct 30, 2002
11:41 pm
2533
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...
tincan212000
Offline Send Email
Oct 31, 2002
5:18 pm
2534
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...
Ronald Bourret
xmldbms
Offline Send Email
Nov 1, 2002
6:40 am
2535
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...
Ronald Bourret
xmldbms
Offline Send Email
Nov 1, 2002
6:42 am
2536
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. ...
Ronald Bourret
xmldbms
Offline Send Email
Nov 1, 2002
7:29 am
2537
Dear Sir, As I used xmldbms to transferred xml data to database, the JAVA IDE.exe showed the message "java.lang.OutOfMemory Exception". How can I solve this...
lmwang0616
Offline Send Email
Nov 2, 2002
4:16 pm
2538
Hi, Iam getting error saying : "de.tudarmstadt.ito.xmldbms.InvalidMapException: Table not found: Parts. Check that the table exists, that its name is spelled ...
Arun C.R.
arun_cr2000
Offline Send Email
Nov 5, 2002
10:20 am
2539
Hi I dont know what JAVA IDE.exe is. But using the Sun JRE (java.exe) you can set the maximimum available memory for your application using the -Xmx ...
Peter Nuetzel . inglobo
peter.nuetzel@...
Send Email
Nov 6, 2002
2:46 pm
2540
Hi, It can work!! Thank you very much. ... you can ... Xmx ... will ... can ... dbms ... http://docs.yahoo.com/info/terms/...
lmwang0616
Offline Send Email
Nov 7, 2002
6:14 am
Messages 2511 - 2540 of 3864   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help