我正在尝试将Oracle代码迁移到Postgres,同时在Oracle中我们使用的是XML,而在PostgreSQL中我们使用的是JSON。 因此,在迁移时,我几乎没有基本点,
像在oracle中一样,有一个函数newDOMDocument:
FUNCTION newDOMDocument RETURN domdocument;
现在,在需要迁移的过程中,变量声明为:
doc DOMDocument;
ndoc DOMNode;
root_elmt DOMElement;
在宣言部分我们有:
doc := newDOMDocument;
nDoc := makeNode(doc);
root_elmt := createElement(doc, 'stm');
请你帮忙在PostgreSQL中用JSON转换它。
答案 0 :(得分:0)
为什么不在Oracle中迁移到JSON?