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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 1832 - 1861 of 3864   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1832
Hi, Enclosed's the sampXMLDB.map that was generated with the GenerateMap.java program.Exepecting your reply. Thanks and Regards, Payal ... ...
Payal Dutt
payal_dutt2001
Offline Send Email
Jan 1, 2002
9:47 pm
1833
I use the Transfer.java to result a XML Document. *************************************************************** If using the DTD, I want to get the document...
yuchingchen2001
Offline Send Email
Jan 2, 2002
6:47 am
1834
Do I must have the "IgnoreRoot..." in my map file? ********************* XML file ************************* If I want to get the XML Document that "Peoples"...
yuchingchen2001
Offline Send Email
Jan 3, 2002
7:24 am
1835
Hello I want to store XML-Data in an Oracle-DB but I have a problem with Transfer.java. I have successfully generated the SQL-DDL for that with GenerateMap...
Paul Miotti
paulmiotti
Offline Send Email
Jan 3, 2002
11:03 am
1836
I have this situation in an XML file: ... <room type="SGL" roomnum="1"> <paxname isleadname="Y">MIKE</paxname> <gross>84.000</gross> <nett>84.000</nett> ...
mrctpx
Offline Send Email
Jan 3, 2002
5:51 pm
1837
You need to modify Transfer to commit the connection before closing it. (This is a bug in Transfer.) For more information, see: ...
Ronald Bourret
rpbourret@...
Send Email
Jan 3, 2002
10:51 pm
1838
This depends on the parser you are using. Your parser should have an option so that it throws an exception when it finds a validation error. (Most parsers do...
Ronald Bourret
rpbourret@...
Send Email
Jan 3, 2002
10:59 pm
1839
Thanks. This is a known bug and has been fixed in version 2.0. (Good work finding it. It's not an easy one...) -- Ron...
Ronald Bourret
rpbourret@...
Send Email
Jan 3, 2002
11:11 pm
1840
Hi Ron Nice to have you back. I was going crazy trying to figure out the result set closing problem and was not sure if I was going to break the program. Did...
nadeembc
Offline Send Email
Jan 3, 2002
11:33 pm
1841
Hi I am trying to make a map file for this incoming XML data. it should populate two tables invoice and <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE...
nadeembc
Offline Send Email
Jan 4, 2002
12:38 am
1842
Did your Q1 is that you want to get the <!DOCTYPE response SYSTEM "intacct_response.v2.1.dtd"> in the output xml file? If yes, I add the statement a row of...
yu_ching
yuchingchen2001
Offline Send Email
Jan 4, 2002
1:13 am
1843
Has anyone looked at JaxMe? (http://jaxme.sourceforge.net) The docs for it are sparse, but I'm curious if anyone here has any experience with it and cares to...
Gary Lawrence Murphy
garym@...
Send Email
Jan 4, 2002
6:42 am
1844
... DOM levels 1 and 2 do not allow you to add/modify a DocumentType node, so you can't modify the DOM tree returned by DBMSToDOM. Therefore, the only way to...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
8:03 am
1845
... Note that this is specific to the Xerces parser. ... This is easy. Just add these attributes to the root element: doc = dbmsToDOM.retrieveDocument(...); ...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
8:12 am
1846
You can't do this in version 1.0. (You will be able to do this in version 2.0). To solve the problem, create a map file for the following XML document: <?xml...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
8:27 am
1847
This is the same problem as your previous question. You first need to transform the document to: <room type="SGL" roomnum="1" isleadname="Y"> ...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
8:27 am
1848
... The problem is that IgnoreRoot and PseudoRoot can only eliminate a single, top-level element. The data you want to map is nested more deeply than that. The...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
8:34 am
1849
... Do I must add these instructs in the "toXML" of Transfer.java ?...
yu_ching
yuchingchen2001
Offline Send Email
Jan 4, 2002
8:37 am
1850
... Do I must add these instructs in the "toXML" of Transfer.java and declare the "root"?...
yu_ching
yuchingchen2001
Offline Send Email
Jan 4, 2002
8:42 am
1851
... No. You only use IgnoreRoot if you don't want to map the root element to the database. ... If you do not map <Peoples> with IgnoreRoot, you must use...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
8:45 am
1852
Just use the identifiers without quotes. For example: CORRECT: <ClassMap> <ElementType Name='DATA-STRUCT'> <ToClassTable> <Table Name='DATA-STRUCT'/> ...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
8:53 am
1853
I just took a quick look at it. It appears to have two major differences: 1) You can't transfer data directly from XML to/from the database. Instead, you must...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
9:05 am
1854
... Your code will probably work, but I won't guarantee it :) A better solution would be to close the result set in the method that creates it. To do this, you...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
9:32 am
1855
1) See previous email for possible solutions to DTD problem 2) For datecreated and datedue, you will have to transform these before mapping. For more...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
9:41 am
1856
... Yes. Remember that Transfer.java is just a sample. Most people use it as code to start writing their own application. -- Ron...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
10:38 am
1857
This is very strange. I assume POLICYPK is a generated key and has a SQL type of NUMERIC. Assuming this is true, then the call stack for the Oracle ODBC driver...
Ronald Bourret
rpbourret@...
Send Email
Jan 4, 2002
11:09 pm
1858
... I add these instructions in the "toXML" of Transfer.java, but it has a little of bugs. I add some declared instructions with root, but it still have bugs....
yu_ching
yuchingchen2001
Offline Send Email
Jan 7, 2002
2:39 am
1859
root should be declared as an Element (org.w3c.dom.Element): static void toXML(String mapFilename, String xmlFilename, String url, String tableName,...
Ronald Bourret
rpbourret@...
Send Email
Jan 7, 2002
7:12 am
1860
... I have modify my xml file and Transfer the data from database to the xml document that is success. But I can't transfer the data to the database. The data...
yu_ching
yuchingchen2001
Offline Send Email
Jan 7, 2002
8:03 am
1861
Please see example xml file below which i am trying to bring into DBMS tables. My problem is that there is too many nesting levels which don't make database...
nadeembc
Offline Send Email
Jan 7, 2002
7:56 pm
Messages 1832 - 1861 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