Re: Custom XML Resultmaps

2005-05-13 Thread Abdullah Kauchali
U, I suppose we can, but that's another server-side processing we have to do then. What I'm looking for is the possibility of producing XML directly from the JDBC Resultset? Does the framework allow for extending them? Kind regards Abdullah Larry Meadors wrote: Could you transform it

Re: Custom XML Resultmaps

2005-05-13 Thread Abdullah Kauchali
Hi Ron, That would have been ideal, but we are catering for a Win32 Application that deals with ADO 2.8 not ADO.NET. So we have to produce the ADO-XML Reduced schema. What we need specifically is the Resultset meta-data - column types, sizes etc. Kind regards, Abdullah Ron Grabowski wrote: Do

Custom XML Resultmaps

2005-05-12 Thread Abdullah Kauchali
Is it possible to extend the current XML Resultmap format to a new custom one? Don't ask!, but were are investigating the possibility of returning XML in Microsoft's ADO format. Any general advice on this would be greatly appreciated, Kind regards Abdullah

Re: Custom XML Resultmaps

2005-05-12 Thread Larry Meadors
Could you transform it with XSLT? Larry On 5/12/05, Abdullah Kauchali [EMAIL PROTECTED] wrote: Is it possible to extend the current XML Resultmap format to a newcustom one?Don't ask!, but were are investigating the possibility ofreturning XML in Microsoft's ADO format.Any general advice on this

Re: Custom XML Resultmaps

2005-05-12 Thread Ron Grabowski
Do you want to have IBatis generate an xml file that can be loaded by a DataSet's ReadXml method? Here's an example for the non-.Net people of one way of saving a DataSet to XML: DataSet ds = new DataSet(People); DataTable dt = new DataTable(Person); dt.Columns.Add(Name, typeof(string));