• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

XML to database

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are there any free third party products/middleware which can read/write xml to relational database.also provide utilities to connvert txt,xls(excel sheet) files to xml....Appreciate any help
 
author and deputy
Posts: 3150
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Gary kristen:
Are there any free third party products/middleware which can read/write xml to relational database.also provide utilities to connvert txt,xls(excel sheet) files to xml....Appreciate any help


I donot know about a thrid party tool,but there exist that u can search using google, meanwhile u can go through this tutorial on databaee and xml from IBM
 
Ranch Hand
Posts: 130
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't think there will be a tool.
As I'm right there are a few types of databases:
Relational
Object
XML
Flat
So there are a few difficulties to build a converter.
 
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
java can do this job.
you create a DOMTree, serialize it and write the file to harddisk.
the source can be databse,textfile or something else.
the tutorial from IBM is very good, i`ve used the tutorial manipulating datas with xslt, i think, and the book Java & XML from Bret Mclaughlin.
bernd
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please don't shoot .. but .. Excel 2000 (or XP, one of the two) actually supports the exporting of Excel files as XML. Not the best solution in terms of compliance (will not conform to a DTD or schema) but works. Good luck.
 
reply
    Bookmark Topic Watch Topic
  • New Topic