• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Result in XML format

 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,

Can it possible to get the results in XML format when it is queried agnist MySql data base.

I have a sample query of DB2 data base, where you can get the result in XML formatted way:
SELECT REC2XML (0.001,'COLATTVAL','row',tabname,colname,typename,length,default,nulls) as "xmlData" FROM syscat.columns
here the REC2XML function makes the XML format data after querying from DB2 database.

Can any one help me, how it can be done it in MySql and Oracle database.
 
Ranch Hand
Posts: 118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
for oracle , something like this should work:

Select xmlelement("fld1_name",col1) , xmlelement("fld2_name",col2)
From some_table ;

if you want to aggregate it you can use xmlagg
 
Pankaj Patro
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Adagort, thanks for reply.

like REC2XML in DB2 there is a function in Oracle XMLFOREST,
Is there any built in function in MySql for XML.
 
He was expelled for perverse baking experiments. This tiny ad is a model student:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic