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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 3328 - 3361 of 3869   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
3328 woodcindy2004 Send Email Mar 4, 2004
2:50 pm
This may be a redundant message. I typed my entire message in but then it disappeared. I'm not sure if it posted or not so here it is again. I am working on a...
3329 woodcindy2004 Send Email Mar 4, 2004
6:44 pm
If I am understanding the xml-dbms code correctly, it attempts to do an update to a table and if no row exists, insert the data. I need to know if there is a...
3330 Ronald Bourret
xmldbms Send Email
Mar 4, 2004
8:58 pm
There are actually three different types of inserts: 1) Normal inserts are what you want -- they insert the data and return errors to the application. 2) Soft...
3331 Rod
liuhan95121@... Send Email
Mar 5, 2004
2:34 am
In http://www.rpbourret.com/xmldbms/ there is no detail spec of v2.0 mapping language.any sample ? thx . [Non-text portions of this message have been removed]...
3332 ´H¨M
edwin1017 Send Email
Mar 6, 2004
5:06 pm
Hi I am new here.... I have just downlaod and try to convert XML into DB I want to convert some simple XMl doc into MYSQL However, when I try to run the sample...
3333 ´H¨M
edwin1017 Send Email
Mar 7, 2004
9:04 am
... Hi I am new here.... I have just downlaod and try to convert XML into DB I want to convert some simple XMl doc into MYSQL However, when I try to run the...
3334 ´H¨M
edwin1017 Send Email
Mar 7, 2004
9:53 am
Hi I have the same problem til now I can't find where I can use those possible solutions within the code Trasfer.java I can't find the commit code regards Ed ...
3335 AndrewWatt2001@...
andrewwatt2001 Send Email
Mar 8, 2004
1:37 am
The message cannot be represented in 7-bit ASCII encoding and has been sent as a binary attachment. [Non-text portions of this message have been removed]...
3336 holger.schimanski@... Send Email Mar 8, 2004
7:41 am
You need a table "xmldbmskey&quot; in your schema ("xmldbms";) with a row "highkey" (type number). This table is used when xml-dbms is generating primary key values....
3337 ´H¨M
edwin1017 Send Email
Mar 8, 2004
6:09 pm
Hi I have follow the instructions as below I have changed the KeygeneratorImp.java within xmldbms.jar and compile a new jar for running transfer .java the...
3338 Ronald Bourret
xmldbms Send Email
Mar 9, 2004
5:37 am
I just realized I hadn't answered this message yet. Here's the main design issues. Note that the proposed solutions definitely follow the 80/20 rule. They are...
3339 Ronald Bourret
xmldbms Send Email
Mar 9, 2004
6:17 am
Sorry this answer is so late. I suspect the problem is due to Transfer calling System.runFinalizersOnExit. This method is deprecated in Java 1.2 and later and...
3340 Ronald Bourret
xmldbms Send Email
Mar 9, 2004
6:18 am
More apologies about late answers. I took a quick look on Google and couldn't find a comprehensive site that answers this question. A couple of sites that...
3341 Ronald Bourret
xmldbms Send Email
Mar 9, 2004
6:19 am
The Transfer sample in version 1.x uses the Oracle XML parser by default. The problem is that you do not have the Oracle XML parser. (Note that this is an XML...
3342 holger.schimanski@... Send Email Mar 9, 2004
8:47 am
Is there a kind of schedule for beta and release date of version 2? Greetings Holger...
3343 cafulnecky Send Email Mar 9, 2004
1:23 pm
Ron, Commenting out System.runFinalizersOnExit does indeed allow the ant task to run. Have not closed statements manually but have not run into problems so...
3344 cafulnecky Send Email Mar 9, 2004
9:32 pm
Nevermind, just realized the referenced post does address the closing of statements adequately....
3345 Ronald Bourret
xmldbms Send Email
Mar 10, 2004
6:53 am
It is common to group related elements in XML with another element. It is also common that this "wrapper" element does not directly correspond to any structure...
3346 Ronald Bourret
xmldbms Send Email
Mar 10, 2004
6:54 am
Commit is called in two places in XML-DBMS v1.x. First, it is called in KeyGeneratorImpl. You have already commented out the call in that class. Second, it is...
3347 Ronald Bourret
xmldbms Send Email
Mar 10, 2004
6:54 am
There is no answer to this question :( My main job is taking care of my two children. I also do some consulting work. And I write articles, give presentations,...
3348 mdmaynard42 Send Email Mar 10, 2004
9:44 pm
Greetings, I need some help. According to the DTD for my document, <!ELEMENT batch (batch-id , batch-type? , request-set+ )> <!ELEMENT request-set (request...
3351 Ronald Bourret
xmldbms Send Email
Mar 15, 2004
6:29 am
The problem is that XML-DBMS cannot create a key relationship between siblings (like request and message). There are two ways to solve this problem: 1) Use...
3352 oneill_tim2000 Send Email Mar 19, 2004
10:49 am
Hi All, I'm using XMLDBMS to get data out and the decimal places are begin lost heres a portion of the map and the data I'm getting: Options portion that...
3353 holger.schimanski@... Send Email Mar 22, 2004
6:45 pm
I have a 1:n assosiation in my XML, that I want to transfer to dbms. <RXN> <reactionpk>1001</reactionpk> <VARIATION> <variationpk>2001</variationpk> ...
3354 holger.schimanski@... Send Email Mar 23, 2004
9:29 am
Another idea is to use <java> with fork="true&quot; to call Transfer passing your properties with nested elements <arg value="..."> <java...
3357 Rod
liuhan95121@... Send Email
Mar 23, 2004
11:55 am
like other element,no different,this is very strange .Can you tell me when this Excepition throws ? thx. java.sql.SQLException: Invalid numeric value: male at...
3358 holger.schimanski@... Send Email Mar 23, 2004
2:38 pm
Ups. Sorry, I made a mistake in my XML file. Everything is working fine. Greetings Holger...
3359 Ronald Bourret
xmldbms Send Email
Mar 26, 2004
7:52 am
Oops. I duplicated the problem here and have tentatively tracked it down. There were two problems in the format method in ...
3360 holger.schimanski@... Send Email Mar 26, 2004
9:30 am
FLOAT values are mapped by default with DecimalFormat, right? But this means that float values like 8.000000000000000e+02 are transfered to the database as 8.0...
3361 cafulnecky Send Email Mar 26, 2004
3:49 pm
I am trying to retrieve data from tables that were populated using xmldbms. The Unparseable number exception is being thrown on a key column having a datatype...
Messages 3328 - 3361 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