0

I have to store XML Data via Java code into Oracle XMLTYPE column. I want the data to be generated dynamically rather than providing a hard coded String . Performance is also one of the concern,need to generate large XML files. What would be an approriate way to do this task?

Abhishek
  • 878
  • 12
  • 28

1 Answers1

0

You could use an xml builder, to generate dynamically.

XML Builder is a utility that creates simple XML documents using relatively sparse Java code

Alexandru Severin
  • 6,021
  • 11
  • 48
  • 71