schema_to_xml_and_xmlschema()

将模式转换为 XML 并返回 XML 架构的函数

schema_to_xml_and_xmlschema() 是一个系统函数,用于发出 PostgreSQL 模式的内容及其定义作为 XML

schema_to_xml_and_xmlschema()PostgreSQL 8.3 中添加。

用法

schema_to_xml_and_xmlschema ( schema name, nulls boolean, tableforest boolean, targetns text )
         → xml

schema_to_xml_and_xmlschema() 结合了 schema_to_xml()schema_to_xmlschema() 函数的输出。有关更多详细信息,请参阅每个函数的条目。

请注意,从 PostgreSQL 16 开始,schema_to_xml_and_xmlschema() 不包含输出中包含的关系定义。请参见下面的示例。

更改历史记录

示例

schema_to_xml_and_xmlschema() 的基本用法示例

postgres=# CREATE TABLE foo (id INT, val TEXT);
CREATE TABLE 

postgres=# INSERT INTO foo VALUES (generate_series(1,2), clock_timestamp());
INSERT 0 2 

postgres=# SELECT schema_to_xml_and_xmlschema('public', true, true, '');

                                     schema_to_xml_and_xmlschema
------------------------------------------------------------------------------------------------------
 <public xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="#">    +
                                                                                                     +
 <xsd:schema                                                                                         +
     xmlns:xsd="http://www.w3.org/2001/XMLSchema">                                                   +
                                                                                                     +
 <xsd:simpleType name="INTEGER">                                                                     +
   <xsd:restriction base="xsd:int">                                                                  +
     <xsd:maxInclusive value="2147483647"/>                                                          +
     <xsd:minInclusive value="-2147483648"/>                                                         +
   </xsd:restriction>                                                                                +
 </xsd:simpleType>                                                                                   +
                                                                                                     +
 <xsd:simpleType name="UDT.postgres.pg_catalog.text">                                                +
   <xsd:restriction base="xsd:string">                                                               +
   </xsd:restriction>                                                                                +
 </xsd:simpleType>                                                                                   +
                                                                                                     +
 <xsd:complexType name="SchemaType.postgres.public">                                                 +
   <xsd:sequence>                                                                                    +
     <xsd:element name="foo" type="RowType.postgres.public.foo" minOccurs="0" maxOccurs="unbounded"/>+
   </xsd:sequence>                                                                                   +
 </xsd:complexType>                                                                                  +
                                                                                                     +
 <xsd:element name="public" type="SchemaType.postgres.public"/>                                      +
                                                                                                     +
 </xsd:schema>                                                                                       +
                                                                                                     +
 <foo>                                                                                               +
   <id>2</id>                                                                                        +
   <val xsi:nil="true"/>                                                                             +
 </foo>                                                                                              +
                                                                                                     +
 <foo>                                                                                               +
   <id>1</id>                                                                                        +
   <val xsi:nil="true"/>                                                                             +
 </foo>                                                                                              +
                                                                                                     +
                                                                                                     +
 </public>                                                                                           +

(1 row)

分类

系统函数XML

另请参见

schema_to_xml()schema_to_xmlschema()database_to_xml_and_xmlschema()table_to_xml_and_xmlschema()query_to_xml_and_xmlschema(),cursor_to_xml_and_xmlschema()

反馈

提交任何关于 "schema_to_xml_and_xmlschema()" 的评论、建议或更正 此处