Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

xml-dbms

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 792
  • Category: XML
  • Founded: Mar 5, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 2615 - 2644 of 3869   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
2615 Azzam G
ronin_0000000 Send Email
Jan 2, 2003
8:08 am
hmmm .. ok .. in other words, is there an XML parser ??? what i'm looking for is viewing the xml document in normal ??? ...
2616 Brian Masenya
Brianm@... Send Email
Jan 2, 2003
8:15 am
Yes, a library for xml. I used libxml2 for linux ___________________________ Lesiba B. Masenya Matsidi Matsea le nok'a Thathwe Work: +27 11 280 0710 Cell: +27...
2617 Azzam G
ronin_0000000 Send Email
Jan 2, 2003
8:24 am
ok ... thats goood what about microsoft windows platforms is there librarys for it ??? the programing language i might use next college term (implementation...
2618 Ronald Bourret
xmldbms Send Email
Jan 2, 2003
9:11 pm
There is XML support in Delphi 6: it includes DOM implementations from both IBM and Microsoft. I'm not sure about Delphi 5. For a list of XML parsers you can...
2619 Jim McLaughlin
jim.dogleg@... Send Email
Jan 3, 2003
11:30 pm
See XchainJ at http://xchainj.com/xjDescription.html ... Take a look at XchainJ http://xchainj.com/ (commercial). XchainJ product can take in an XML Schema...
2620 spoulson3 <shawn.p...
spoulson3 Send Email
Jan 6, 2003
6:55 pm
Hello all, I had just found the XML-DBMS project a few days ago. I decided to give it a shot because I am working on a Perl project that generates XML data...
2621 seer421 <seer421@....
seer421 Send Email
Jan 7, 2003
11:04 pm
Hello, I'm trying to use XMLDBMS2.0 to retrieve data from oracle Order management tables. Following is the error message. All the column names match with what...
2622 sharadaj2000 <shar...
sharadaj2000 Send Email
Jan 8, 2003
7:28 pm
Hai, You also should check the case.it should be the same as u specified when creating tables.Hope this helps thanks ... (DataHan ... (DBMSToDO ... (Tra ... ...
2623 rarichter@...
rrichter39 Send Email
Jan 8, 2003
7:32 pm
When using the below xml and map, only the last SpecialInstructions is inserted into an Oracle table. I would like to have all three inserted. Any help would...
2624 part_sastra
rsona2k1 Send Email
Jan 9, 2003
8:24 am
Respected Sir/Madam, I am a M.tech computerscience student studying in first year,as I have to do individual project for one complete year (in 2nd year),I seek...
2625 fbsilva <fbsilva@....
fbsilva Send Email
Jan 9, 2003
8:39 pm
Hello, I am trying to implement KeyGenerator to call an Oracle Sequence (Primary Key) when inserting data into tables. A SQL insert would look like this: ...
2626 Ronald Bourret
xmldbms Send Email
Jan 9, 2003
10:13 pm
The problem here is that XML-DBMS views complex element types as classes, so what your map file does is to say that you have a class named...
2627 sharadaj2000 <shar...
sharadaj2000 Send Email
Jan 9, 2003
11:48 pm
Hai, You have to implement the KeyGenerator,in the generateKey() method,write ur implementation and to the DOMTODBMS object set this key generator class(for...
2628 Ronald Bourret
xmldbms Send Email
Jan 10, 2003
1:53 pm
Correct. A couple of points about implementing/using the key generator: 1) The initialize method should open a connection to the database. The properties...
2629 fbsilva <fbsilva@....
fbsilva Send Email
Jan 10, 2003
3:02 pm
Thanks guys, for your help... Francis ... The ... information ... what ... properties. ... something ... set. It ... value. ... values ... and ... the ... this...
2630 johntowell <johnto...
johntowell Send Email
Jan 10, 2003
8:29 pm
Has anyone had any success running the Transfer tool from Ant? I am running into a linkage error. I think it has something to do with Ant's version of Xerces...
2631 johntowell <johnto...
johntowell Send Email
Jan 10, 2003
8:56 pm
Hmm. I was going to try and switch to using JAXP instead, but the 2.0 release only seems to contain ParserUtilsXerces. I thought that I read somewhere that...
2632 Rick Taylor
taylor@... Send Email
Jan 10, 2003
9:26 pm
I use ant all the time to do this with xerces. Set the a path in the build file to include the jars you need to use: (the jars you need are dependent on which...
2633 johntowell <johnto...
johntowell Send Email
Jan 10, 2003
10:04 pm
Yes Yes! the fork was the trick. Need to get outside of Ant's JVM I guess. Cool thanks Rick. OK now I am having an issue with the dtd locations. Since this...
2634 Rick Taylor
taylor@... Send Email
Jan 10, 2003
10:47 pm
John, By DTD locations, i assume you are referring to the XML instance documents (not the maps). I have XML Schema rather than DTD's defining the xml...
2635 johntowell <johnto...
johntowell Send Email
Jan 10, 2003
10:50 pm
Yes Yes! the fork was the trick. Need to get outside of Ant's JVM I guess. Cool thanks Rick. OK now I am having an issue with the dtd locations. Since this...
2636 johntowell <johnto...
johntowell Send Email
Jan 10, 2003
11:34 pm
Rick, I was actually talking about the xmldbms2.dtd for the Maps. That is defined in the map as <!DOCTYPE XMLToDBMS SYSTEM "xmldbms2.dtd" > This only works if...
2637 Ronald Bourret
xmldbms Send Email
Jan 11, 2003
8:38 am
... It doesn't. I looked at JAXP, but it didn't support all of the functionality that was needed. In particular, JAXP doesn't support writing documents, and...
2638 Ronald Bourret
xmldbms Send Email
Jan 11, 2003
8:46 am
... A number of other people have mentioned this as a problem. Unfortunately, it's not clear if there is an easy solution -- see next email. ... See the...
2639 Ronald Bourret
xmldbms Send Email
Jan 11, 2003
8:58 am
The problem with passing the DTD in as a property is that there is no standard way to tell a parser to use a particular DTD instead of the DTD in the document....
2640 johntowell <johnto...
johntowell Send Email
Jan 14, 2003
7:57 am
Thanks for your help Ronald and Rick on getting XML-DBMS integrated with Ant. I appreciate it. I have a more specific Mapping question now. Hmmm... how to...
2641 Ronald Bourret
xmldbms Send Email
Jan 14, 2003
8:58 am
This looks like the right idea to me. Unfortunately, XML-DBMS doesn't currently support database-generation of non-primary unique keys. If I recall correctly,...
2642 O'Neill, Timothy(...
T.ONeill@... Send Email
Jan 14, 2003
11:03 am
Hi All, Using the XML-DBMS Version 1 and changing from Informix to DB2 7.2 Using the DB2Java.zip in the SQLLIB/JAVA12 folder The App hangs on the getColumns...
2643 Tim O'Neill <T...
xxx_oneill Send Email
Jan 14, 2003
1:57 pm
Hi All, Additional note on this one, the code that tries to set the catalog seems to be causing this error. The table.name = "DB2PCH.PCH_PUBLISH_T" which is...
2644 Peter V. Mikhalenko
gryzlo2000 Send Email
Jan 14, 2003
3:58 pm
Hello, Ronald! Maybe I am using old version of XMLDBMS2, but I've found that IN operator in WHERE clauses within filter sets didn't work. After several time...
Messages 2615 - 2644 of 3869   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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