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 2831 - 2860 of 3869   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
2831 Ronald Bourret
xmldbms Send Email
Apr 2, 2003
12:53 am
Sorry I haven't answered sooner. I have been very busy. In answer to your first two comments, you can use the first option (even though you have data from...
2832 fabuley Send Email Apr 2, 2003
4:56 am
Is anyone on the list using XML-DBMS in a commercial environment? I'm looking for a bi-directional XML to database solution for Java and ideally I'd like to...
2833 jeb501@... Send Email Apr 2, 2003
5:51 am
Hi All. Where can I start to know more about xml-dbms Regards Eugene [Non-text portions of this message have been removed]...
2834 Ronald Bourret
xmldbms Send Email
Apr 2, 2003
7:59 am
Best place to start is with the v1.x documentation. (This is true even if you want to use version 2.0.) http://www.rpbourret.com/xmldbms/readme.htm Also useful...
2835 ardavan_kanani Send Email Apr 2, 2003
3:02 pm
Hello, Yes I am using alpha 3. Is there a newer version? I downloaded the latest files from CVS and failed to compile the files. I am not putting the HighLow...
2836 ardavan_kanani Send Email Apr 2, 2003
4:55 pm
I just did the following: java org.xmlmiddleware.xmldbms.tools.Transfer File1=parser.props File2=db.props Method=StoreDocument MapFile=snp.map XMLFile=snp.xml ...
2837 ardavan_kanani Send Email Apr 2, 2003
9:56 pm
This is a follow up of my previous question. Everytime I generate a map it puts the HighLow and keygenerator information in the map. I am using alhpa 3...
2838 rene adam
adamrene Send Email
Apr 3, 2003
4:10 pm
When using the ResultSet method, i have such a message: Unable to retrieve the IDMEF document. de.tudarmstadt.ito.xmldbms.InvalidMapException: Element type...
2839 fabuley Send Email Apr 3, 2003
5:55 pm
Hi! I'm getting the following exception while trying to perform a database to XML transfer: org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR: An attempt was...
2840 Ronald Bourret
xmldbms Send Email
Apr 3, 2003
9:53 pm
The most likely cause of this is that the SELECT statement you specified returned more than one row. This is legal, but you must specify a wrapper element in...
2841 Ronald Bourret
xmldbms Send Email
Apr 3, 2003
10:08 pm
... The CVS files are newer than the alpha 3 files, but I have not done a formal alpha 4 release yet. I still have more changes I want to make before I do...
2842 Ronald Bourret
xmldbms Send Email
Apr 3, 2003
10:09 pm
See my comments in reply to your previous email. -- Ron...
2843 Ronald Bourret
xmldbms Send Email
Apr 3, 2003
10:16 pm
Your action file looks OK. A more likely problem is that the case of table and column names in your map file doesn't match the case of table and column names...
2844 ardavan_kanani Send Email Apr 4, 2003
1:41 am
Thanks for the fast and great response. I was finally able to compile the code from the CVS thanks to your directions. I checked my map file against the...
2845 rene adam
adamrene Send Email
Apr 4, 2003
8:08 am
Hello, I think it is a good idea to leave on the group files working with xmldbms so if someone wants an example of map file, i will be able to find it. ... ...
2846 rene adam
adamrene Send Email
Apr 4, 2003
8:17 am
Hello, as ardavan-kanani as done, does someone has an complete example of (map file + sql file) in the case of transferring data from db to xml, using Result...
2847 ardavan_kanani Send Email Apr 4, 2003
2:34 pm
My map file was truncated. Here is a portion of it: <!DOCTYPE XMLToDBMS > <XMLToDBMS Version="2.0" xmlns="http://www.xmlmiddleware.org/xmldbms/v2"> <Options> ...
2848 ardavan_kanani Send Email Apr 4, 2003
7:55 pm
Here is more info that might help narrow down the problem. In my original xml file I have a root element called batch_submission and a child element called...
2849 ardavan_kanani Send Email Apr 4, 2003
8:23 pm
Sorry to bug you and this group so much. The SQL parsing error is solved and there was something wrong with my action file. So the datatransfer I got rid of...
2850 justmailharsh Send Email Apr 6, 2003
10:14 am
i got stuck up with one of my projects...can anyone of you please tell me the http links where i can find sample xml & (corresponding) dtd files ???...
2851 ardavan_kanani Send Email Apr 7, 2003
12:12 am
I narrowed it down more and it looks like the problem is the namespace attributes in the batch_submission element. If I use the following batch_submission...
2852 Phil East
phil7470 Send Email
Apr 7, 2003
10:31 am
Hi, I'm new to xmldbms and I have to say it looks like it's going to make my life a whole lot easy. However I'm having trouble using GenerateMap. I get an...
2853 liligang_email Send Email Apr 7, 2003
10:35 am
while using v1.01 i transfer datum in an xml file as follow to database <A> <B> <C>100</C> <C>200</C> <C>300</C> </B> <D>"XML_DBMS"</D> <E> <F>400</F> ...
2854 sh_du Send Email Apr 7, 2003
6:42 pm
Hi, I'm trying to use the XML-DBMS Perl module to interact with a mysql ... <?xml version="1.0" ?> <XMLToDBMS Version="1.0"> <Options/> <Maps> <IgnoreRoot> ...
2855 Ronald Bourret
xmldbms Send Email
Apr 7, 2003
9:48 pm
I assume you're using JDK 1.2 or higher? If so, then the following change should fix the problem. It is necessary due to the fact that JDK 1.1.x returns a...
2856 Ronald Bourret
xmldbms Send Email
Apr 7, 2003
9:56 pm
In version 1.x, you must retrieve the entire document, then use XSLT to filter out the parts you don't want. In version 2.0, you can write a filter file to do...
2857 adamrene Send Email Apr 8, 2003
3:25 pm
I have such a xml file: <IDMEF-Message&gt; <Alert Number="1"> ..... </Alert> <Heartbeat id="23"> ..... </Heartbeat> <Alert Number="2"> ..... </Alert> <Heartbeat...
2858 sh_du Send Email Apr 8, 2003
11:25 pm
Hi, Could anybody tell me how to write a map file to map the following xml to just one database table? ... <?xml version="1.0"?> <order id="101"> <date...
2859 seer421 Send Email Apr 10, 2003
3:06 pm
Hi, Has anyone implemented keygenerator (PK/FK) for an Oracle database.. Because here y r actually calling the db sequence for a specific column. Thanks, Frank...
2860 Ronald Bourret
xmldbms Send Email
Apr 10, 2003
9:12 pm
Hmmmm. The list does not accept attachments, so your map file was deleted. Could you please post it in the body of a message or send it to me privately?...
Messages 2831 - 2860 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