-
- All Superinterfaces:
XMLTableColumnsFirstStep
public interface XMLTablePassingStep extends XMLTableColumnsFirstStep
A step in the construction of anXMLTABLE
expression.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull XMLTableColumnsFirstStep
passing(Field<XML> xml)
Add thePASSING
clause to theXMLEXISTS
predicate.@NotNull XMLTableColumnsFirstStep
passing(XML xml)
Add thePASSING
clause to theXMLEXISTS
predicate.@NotNull XMLTableColumnsFirstStep
passingByRef(Field<XML> xml)
Add thePASSING BY REF
clause to theXMLEXISTS
predicate.@NotNull XMLTableColumnsFirstStep
passingByRef(XML xml)
Add thePASSING BY REF
clause to theXMLEXISTS
predicate.@NotNull XMLTableColumnsFirstStep
passingByValue(Field<XML> xml)
Add thePASSING BY VALUE
clause to theXMLEXISTS
predicate.@NotNull XMLTableColumnsFirstStep
passingByValue(XML xml)
Add thePASSING BY VALUE
clause to theXMLEXISTS
predicate.
-
-
-
Method Detail
-
passing
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnsFirstStep passing(XML xml)
Add thePASSING
clause to theXMLEXISTS
predicate.
-
passing
@NotNull @Support({DB2,HANA,ORACLE,POSTGRES_10,SQLSERVER}) @NotNull XMLTableColumnsFirstStep passing(Field<XML> xml)
Add thePASSING
clause to theXMLEXISTS
predicate.
-
passingByRef
@NotNull @Support({DB2,POSTGRES_10}) @NotNull XMLTableColumnsFirstStep passingByRef(XML xml)
Add thePASSING BY REF
clause to theXMLEXISTS
predicate.
-
passingByRef
@NotNull @Support({DB2,POSTGRES_10}) @NotNull XMLTableColumnsFirstStep passingByRef(Field<XML> xml)
Add thePASSING BY REF
clause to theXMLEXISTS
predicate.
-
passingByValue
@NotNull @Support({ORACLE,POSTGRES_10}) @NotNull XMLTableColumnsFirstStep passingByValue(XML xml)
Add thePASSING BY VALUE
clause to theXMLEXISTS
predicate.
-
passingByValue
@NotNull @Support({ORACLE,POSTGRES_10}) @NotNull XMLTableColumnsFirstStep passingByValue(Field<XML> xml)
Add thePASSING BY VALUE
clause to theXMLEXISTS
predicate.
-
-