I'm using Oracle's ODP.Net to manipulate records.
When using the XML methods to insert and update records, I've run into a few problems. When I am inserting a new record, I'd like the value of one of the columns to come from a sequence (MySeq.nextval). I'd also like an UPDATE_DATE column to reflect sysdate.
I've only seen examples of OracleXmlCommand using completely formed Xml data sets to operate on. I'd like to have some process-time updates included.
HELP!!!