DBA Data[Home] [Help]

XDB.DBMS_XMLSCHEMA dependencies on XMLTYPE

Line 46: TYPE XMLARR is VARRAY(1000) of XMLType;

42: ------------
43: -- TYPES
44: ------------
45: TYPE URLARR is VARRAY(1000) of VARCHAR2(1000);
46: TYPE XMLARR is VARRAY(1000) of XMLType;
47: TYPE UNAME_ARR is VARRAY(1000) of VARCHAR2(100);
48:
49: ---------------------------------------------
50: -- PROCEDURE - registerSchema

Line 168: schemaDoc IN sys.XMLType,

164: ENABLE_HIERARCHY_CONTENTS,
165: options IN pls_integer := 0);
166:
167: procedure registerSchema(schemaURL IN varchar2,
168: schemaDoc IN sys.XMLType,
169: local IN BOOLEAN := TRUE,
170: genTypes IN BOOLEAN := TRUE,
171: genbean IN BOOLEAN := FALSE,
172: genTables IN BOOLEAN := TRUE,

Line 289: -- of XMLTypes, one XMLSchema document for each database schema.

285: ---------------------------------------------
286: -- FUNCTION - generateSchema(s)
287: -- These functions generate XML schema(s) from
288: -- an oracle type name. generateSchemas returns a collection
289: -- of XMLTypes, one XMLSchema document for each database schema.
290: -- generateSchema inlines them all in one schema (XMLType).
291: -- PARAMETERS -
292: -- schemaName : the name of the database schema containing the type
293: -- typeName : the name of the oracle type

Line 290: -- generateSchema inlines them all in one schema (XMLType).

286: -- FUNCTION - generateSchema(s)
287: -- These functions generate XML schema(s) from
288: -- an oracle type name. generateSchemas returns a collection
289: -- of XMLTypes, one XMLSchema document for each database schema.
290: -- generateSchema inlines them all in one schema (XMLType).
291: -- PARAMETERS -
292: -- schemaName : the name of the database schema containing the type
293: -- typeName : the name of the oracle type
294: -- elementName : the name of the toplevel element in the XMLSchema

Line 318: embedColl IN BOOLEAN := TRUE ) return sys.XMLType;

314: function generateSchema( schemaName IN varchar2, typeName IN varchar2,
315: elementName IN varchar2 := NULL,
316: recurse IN BOOLEAN := TRUE,
317: annotate IN BOOLEAN := TRUE,
318: embedColl IN BOOLEAN := TRUE ) return sys.XMLType;
319:
320: procedure CopyEvolve(schemaURLs IN XDB$STRING_LIST_T,
321: newSchemas IN XMLSequenceType,
322: transforms IN XMLSequenceType := NULL,

Line 334: diffXML IN SYS.XMLTYPE,

330: PRAGMA SUPPLEMENTAL_LOG_DATA(CopyEvolve, UNSUPPORTED_WITH_COMMIT);
331:
332:
333: procedure InPlaceEvolve(schemaURL IN VARCHAR2,
334: diffXML IN SYS.XMLTYPE,
335: flags IN NUMBER := 1);
336: PRAGMA SUPPLEMENTAL_LOG_DATA(InPlaceEvolve, AUTO_WITH_COMMIT);
337:
338: ---------------------------------------------

Line 345: -- xmltypename : Name of the XML Schema datatype.

341: -- specified XML Schema types into the Oracle DATE representation
342: -- using a default reference date and format mask.
343: -- PARAMETERS -
344: -- strval : string representation of valid value (per XML Schema)
345: -- xmltypename : Name of the XML Schema datatype.
346: -- Has to be one of the following:
347: -- * gDay
348: -- * gMonth
349: -- * gYear

Line 354: function convertToDate(strval varchar2, xmltypename varchar2)

350: -- * gYearMonth
351: -- * gMonthDay
352: -- * date
353: ---------------------------------------------
354: function convertToDate(strval varchar2, xmltypename varchar2)
355: return DATE deterministic parallel_enable;
356:
357: ---------------------------------------------
358: -- FUNCTION - convertToTS

Line 364: -- xmltypename : Name of the XML Schema datatype.

360: -- specified XML Schema types into the Oracle TIMESTAMP representation
361: -- using a default reference date and format mask.
362: -- PARAMETERS -
363: -- strval : string representation of valid value (per XML Schema)
364: -- xmltypename : Name of the XML Schema datatype.
365: -- Has to be one of the following:
366: -- * dateTime
367: -- * time
368: ---------------------------------------------

Line 369: function convertToTS(strval varchar2, xmltypename varchar2)

365: -- Has to be one of the following:
366: -- * dateTime
367: -- * time
368: ---------------------------------------------
369: function convertToTS(strval varchar2, xmltypename varchar2)
370: return TIMESTAMP deterministic parallel_enable;
371:
372: ---------------------------------------------
373: -- FUNCTION - convertToTSWithTZ

Line 380: -- xmltypename : Name of the XML Schema datatype.

376: -- TIMESTAMP WITH TIMEZONE representation using a default reference
377: -- date and format mask.
378: -- PARAMETERS -
379: -- strval : string representation of valid value (per XML Schema)
380: -- xmltypename : Name of the XML Schema datatype.
381: -- Has to be one of the following:
382: -- * gDay
383: -- * gMonth
384: -- * gYear

Line 391: function convertToTSWithTZ(strval varchar2, xmltypename varchar2)

387: -- * date
388: -- * dateTime
389: -- * time
390: ---------------------------------------------
391: function convertToTSWithTZ(strval varchar2, xmltypename varchar2)
392: return TIMESTAMP WITH TIME ZONE deterministic parallel_enable;
393:
394: end dbms_xmlschema;