I want to add a element to the xml using its default value and there is not a column in table which will be mapped to it. is it possible? how to do?...
I´ve tried java generatemap product.dtd Error: exception in thread "main" java.lang. NoClassDefFoundError : generatemap I ´m using oracle v2 parser. regards,...
Leonardo G Chaves
grandi@...
Aug 4, 2003 4:03 pm
3035
there are two tables A(a1,a2) and B(b1,b2). can they be mapped into one xml element type. the xml should be: <AB> <a1>1</a1> <a2>2</a2> <b1>3</b1> <b2>4</b2> ...
Can you explain this more? If I remember correctly, conversions are done in three places: o When transferring data from XML to the database, XML-DBMS converts ...
I assume you want to do this when transferring data from the database to XML? If so, this is not directly supported. Instead, you must: 1) Create the XML...
No. I originally planned to add this in v2.0, but found technical problems in the model. I hope to add this in v2.1. What you need to do is get the data from...
Just to let you know that I'll answer this message later this week or early next week. I need to look at Castor's mapping language and see how it maps to...
... Just so I understand. The row in table_flag contains: 1) A column that says what action was taken (insert, update, delete). 2) The key of the row in...
When the value of the DataSourceClass property is "JDBC2DataSource", you need to pass in the JNDIContext and JNDILookupName properties. These tell MapManager...
I use ResultSet to extract data from database table. and i find the resultset is not valid. In fact, it is still use map file and filter file to get data from...
I use xmldbms version 2.0 alpha which is downloaded from cvs. when transferring data from database from XML,BigDecimal is converted to Long or Double. and...
Dear Friends, Please help me this problem.......... I Have used JDBC1DataSource ****************************************************** db.props file contains ...
nudagal omprakash
om_om_prakash@...
Aug 6, 2003 12:37 pm
3047
Thanks Ron. Ronald Bourret <rpbourret@...> wrote:Just to let you know that I'll answer this message later this week or early next week. I need to...
I use xmldbms 2.0 alpha. I will get data from database and run 10 threads. When I use oracle.jdbc.driver.OracleDriver, it works well. when I use Microsoft sql...
This is a long-standing bug in XML-DBMS. The problem is that SQL Server can only have one result set open per statement (hstmt). XML-DBMS opens one result set...
... Probably not. Can you explain exactly what you are doing? For example, if you are using Transfer from the command line, what is your command and what...
I use api to transfer data from database to xml. this is my program: XMLDBMSMap map = XmlDbmsOperation.createMap(mapFile, xmlReader, resolver); DBEnabledMap...
Hi I'm trying to write an application that uses the xmldbms version 2.0 API. Following the steps in the Readme.htm (supplied with the download) - section 3.5...
1) The conversions in ConvertBigDecimal are correct. That is, truncation of fractional digits is allowed. From the JavaDocs: "The following rules from the ODBC...
I've set up a database in Access and I am able to extract the data into an XML document. Having done this I am then trying to populate another Access database...
I assume that you are using the DTD as input and want to get CREATE TABLE statements as output? If so, then the problem is as follows. 1) You do not specify a...
A couple of questions before I try testing this here: 1) Are you using version 1.x or version 2.0? 2) Are you inserting all of the data into a single table or...
Ron, Thanks for getting back to me. Here are the answers to your questions: 1) I am using version 2.0 2) all the data is going into one table. Altogether there...
Hi All, Can i ask a SQL Server 2000 related questions here? I m running a query to get xml from a table having ntext column. The xml returned contains all...
Comments below. ... Hello. ... Should be: FilterCompiler compiler; ... Should be: ParserUtils parserUtils; Also need to set the parserUtils variable to...
1) Have you tried simply getting the rows from the result set without using XML-DBMS? This would check if the problem is in XML-DBMS or somewhere else. 2) I...