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...
Hi, Iam getting error saying : "de.tudarmstadt.ito.xmldbms.InvalidMapException: Table not found: Parts. Check that the table exists, that its name is spelled ...
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@...
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/...
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@...
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...
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: ...
... 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....
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...
... 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....
... 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 --...
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...
... 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...
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...
hi,I am trying to map this xml into database <root> <material id="11"> <mattext>Size</mattext> <matimg>link1</matimg> </material> <material id="22"> ...
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...
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...
Peter is correct. For a complete explanation, see: http://groups.yahoo.com/group/xml-dbms/message/2133 -- Ron ... -- Ronald Bourret Programming, Writing, and...
... 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...
<mattext> and <matimg> are properties of <material>, not related classes. (A related class element has more structure than just PCDATA. That is, it has...
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...
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...
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...
... 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...
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...
... 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...
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...
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...
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 ...