Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

xml.txt 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. -- xml
  2. XMLPARSE (DOCUMENT '...' PRESERVE WHITESPACE)
  3. XMLPARSE (CONTENT '...' STRIP WHITESPACE)
  4. XMLSERIALIZE ( DOCUMENT '...' AS text )
  5. XMLSERIALIZE ( CONTENT '...' AS text )
  6. SET XML OPTION DOCUMENT;
  7. SET XML OPTION CONTENT;
  8. SELECT xmlcomment('...');
  9. SELECT xmlconcat('...', '...');
  10. SELECT xmlelement(name foo, xmlattributes('...' as bar));
  11. SELECT xmlforest('...' AS foo, 123 AS bar);
  12. SELECT xmlpi(name php, '...');
  13. SELECT xmlroot(xmlparse(document '...'), version '...', standalone yes);
  14. SELECT xmlagg(x ORDER BY y DESC) FROM test;
  15. SELECT xmlexists('...' PASSING BY REF '...');
  16. SELECT xpath('...', '...', ARRAY[ARRAY['...', '...']]);
  17. SELECT xpath_exists('...', '...', ARRAY[ARRAY['...', '...']]);
  18. SELECT XMLTABLE('...' PASSING data COLUMNS id int PATH '...' DEFAULT '...', ordinality FOR ORDINALITY) ;
  19. SELECT XMLTABLE(XMLNAMESPACES('...' AS x, '...' AS "B"), '...' PASSING (SELECT data FROM xmldata) COLUMNS foo int PATH '...');
  20. foo IS DOCUMENT
  21. foo IS NOT DOCUMENT
  22. xml_is_well_formed(..)
  23. xml_is_well_formed_document(..)
  24. xml_is_well_formed_content(..)
  25. table_to_xml(..)
  26. query_to_xml(..)
  27. cursor_to_xml(..)
  28. table_to_xmlschema(..)
  29. query_to_xmlschema(..)
  30. cursor_to_xmlschema(..)
  31. table_to_xml_and_xmlschema(..)
  32. query_to_xml_and_xmlschema(..)
  33. schema_to_xml(..)
  34. schema_to_xmlschema(..)
  35. schema_to_xml_and_xmlschema(..)
  36. database_to_xml(..)
  37. database_to_xmlschema(..)
  38. database_to_xml_and_xmlschema(..)