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

CLOB / XML in Oracle DB

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
it would be great if some can help me in solving the following problem.
I wanted to store xml form into oracle database as a whole(nclob data type) and I wanted to apply style sheet to the xml document after retrieving from data base. I am using java servlets,javawebserver2.0. and oracle 8i database. can any one help me???
Thanks.
 
Sheriff
Posts: 3341
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
CLOB is a new datatype available in jdk1.2+. It's fairly straight forward the only requirement is that your jdbc driver has to be comply with the standards for 1.2. Oracle now has a 1.2 compliant driver and you can obtain it at http://technet.oracle.com/software/tech/java/sqlj_jdbc/software_index.htm
Hope this helps
 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,
Oracle8i has BLOB, CLOB and BFILE datatypes. What you mentioned as nCLOB, isnt it the same as CLOB or there is still some difference between the two.

------------------
_SvR_
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic