we have timestamptz field in table. Please tell me, How to set this field type in XML mapping? and Also how to add an entry to the column programatically?
message Table
CREATE TABLE message (
id SERIAL NOT NULL,
isprocessed INT4 DEFAULT 0,
processed_date TIMESTAMPTZ,
notecontents TEXT(2147483647),
ack_date TIMESTAMPTZ
);