Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to provide an Xml-schema for my xmltype Column while using NHibernate. DOes anybody know how to provide a schema in the mapping files? I am using an Oracle 11g R2 database.

If I would create the table manually it would look like that:

create table RevisionHistory(
    ID number not null,
        ...
    History XMLType,
    primary key(ID)
)
XMLTYPE History STORE AS OBJECT RELATIONAL
XMLSCHEMA "HISTORY"
ELEMENT "History";

with an schema called History.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.