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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 2537 - 2566 of 3864   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
2541
org.w3c.dom.DOMException: DOM006 Hierarchy request error at org.apache.xerces.dom.CoreDocumentImpl.insertBefore(CoreDocumentImpl.java:381) at...
Zhang Fengchang
Alainzh
Offline Send Email
Nov 7, 2002
9:50 am
2542
this usually happens if you have more than one root element. I.e. you have mapped more than one row as root element. Try to use a filter document with a...
Peter Nuetzel . inglobo
peter.nuetzel@...
Send Email
Nov 7, 2002
11:59 am
2543
Sorry to take so long to reply. This is a bug in DMLGenerator. To fix this bug, change the constructor to: public DMLGenerator(DatabaseMetaData meta) throws...
Ronald Bourret
xmldbms
Offline Send Email
Nov 7, 2002
10:13 pm
2544
Thanks for finding a workaround. That allowed me to find the underlying bug. The fix is to change the start of DBNameChecker.escapeDBName to the following: ...
Ronald Bourret
xmldbms
Offline Send Email
Nov 7, 2002
11:28 pm
2545
... This is probably a bad idea for several reasons: 1) The reason is that the generated CREATE TABLE statements usually have useless data type declarations....
Ronald Bourret
xmldbms
Offline Send Email
Nov 7, 2002
11:41 pm
2546
Thank you very much. I have solved the problem according to your advice. It seems that it is difficult to find the appropriate doc about the xmldbms when using...
Zhang Fengchang
Alainzh
Offline Send Email
Nov 8, 2002
1:00 am
2547
... Agreed. I'm trying to finish the 2.0 code before I write the 2.0 docs. In the mean time, you can try the following: 1) 2.0 readme. A quick overview of 2.0....
Ronald Bourret
xmldbms
Offline Send Email
Nov 8, 2002
7:18 pm
2548
... OK. I've added checks for constraint name collisions. These are compiled, tested, and checked in. They're involved enough that I won't list them here --...
Ronald Bourret
xmldbms
Offline Send Email
Nov 8, 2002
8:48 pm
2549
Another bug. The problem is that Oracle doesn't have an INTEGER data type, but the generated key columns are INTEGER. The code that generated SQL statements...
Ronald Bourret
xmldbms
Offline Send Email
Nov 9, 2002
2:08 am
2550
... Exactly. For some reasons we have to use oracle. It's a small project at my university. The conversion won't be fully automatical. Right now we've tested...
Jarek Woloszyn
yossaaa
Offline Send Email
Nov 11, 2002
11:50 pm
2551
Hai All, Iam new to XMLDBMS.I have some Qs regarding transactions. for ex.When i want to insert an xml order into a table,i also want to record this in book...
sharadaj2000
Offline Send Email
Nov 12, 2002
11:34 pm
2552
hi,I am trying to map this xml into database <root> <material id="11"> <mattext>Size</mattext> <matimg>link1</matimg> </material> <material id="22"> ...
greeley304
Offline Send Email
Nov 13, 2002
1:45 am
2553
JDBC uses integer values to indicate column data types. For example, a value of 4 means that the column is an INTEGER column. The value 1111 means that the...
Ronald Bourret
xmldbms
Offline Send Email
Nov 13, 2002
6:46 am
2554
Oops. I just looked at the code and lying about the data type won't work. This is a bug that needs to be fixed. I suspect the solution is to add a case for...
Ronald Bourret
xmldbms
Offline Send Email
Nov 13, 2002
6:53 am
2555
Peter is correct. For a complete explanation, see: http://groups.yahoo.com/group/xml-dbms/message/2133 -- Ron ... -- Ronald Bourret Programming, Writing, and...
Ronald Bourret
xmldbms
Offline Send Email
Nov 13, 2002
6:55 am
2556
... Yes. You need to do the following: 1) Before you call DOMToDBMS.storeDocument, set the commit mode to COMMIT_NONE. 2) Call storeDocument to store your...
Ronald Bourret
xmldbms
Offline Send Email
Nov 13, 2002
7:06 am
2557
<mattext> and <matimg> are properties of <material>, not related classes. (A related class element has more structure than just PCDATA. That is, it has...
Ronald Bourret
xmldbms
Offline Send Email
Nov 14, 2002
7:02 am
2558
Hi, I am new to XMLDBMS. So it's better to look at the examples while learning the concept. Can anyone tell me where i can find the examples or send me some...
greeley304
Offline Send Email
Nov 14, 2002
3:12 pm
2559
hi, Thanks for the reply.it certainly works.but when i tried to use ver 2.0 beta transfer object always takes datasource and i cannot pass the individual...
sharadaj2000
Offline Send Email
Nov 14, 2002
5:55 pm
2560
this is continuation for my previous posting.I didnt see the filters in ver1.0.is it something only in ver2.0?.I need to retreive records when reading out...
sharadaj2000
Offline Send Email
Nov 14, 2002
6:19 pm
2561
... You can wrap your connection in the class org.xmlmiddleware.db.ArrayDataSource. Note that you can't use this with Transfer, since Transfer does not...
Ronald Bourret
xmldbms
Offline Send Email
Nov 14, 2002
6:55 pm
2562
Filters are only available in version 2.0. You can pass a date/time at run time. Just set up a filter to use a parameter (see filters.dtd for details) and pass...
Ronald Bourret
xmldbms
Offline Send Email
Nov 14, 2002
6:58 pm
2563
... I realized this answer isn't really clear. You don't need this table if you don't want XML-DBMS to generate keys for you. In version 1.x, you will need to...
Ronald Bourret
xmldbms
Offline Send Email
Nov 14, 2002
9:51 pm
2564
Hi, thanks for ur help.I have one more Question.Is there a possibility to map different element types to same table. For ex my xml looks like this <PO1...
sharadaj2000
Offline Send Email
Nov 19, 2002
12:40 am
2565
This is not supported. If the PID element was inside the PO1 element: <PO1 ItemQty="4" ItemNumber"521864"> <PID ItemDesc=This is Purchase Order" /> </PO1> then...
Ronald Bourret
xmldbms
Offline Send Email
Nov 19, 2002
7:41 am
2566
Hi, i solved the problem using inline mapping as u said.that works.thanks. few more qs. is there a possibility to retreive the value from the sequence anad ...
sharadaj2000
Offline Send Email
Nov 20, 2002
1:28 am
Messages 2537 - 2566 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