src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/ParameterizedOperation.java
branchJDK-8188051-branch
changeset 56997 c9cbac2979fb
parent 56824 62e92191354d
equal deleted inserted replaced
56832:4f7713e6a308 56997:c9cbac2979fb
    36  * same character sequence, for example '?', it is recommended that the
    36  * same character sequence, for example '?', it is recommended that the
    37  * parameter id be the decimal integer representation of the parameter number.
    37  * parameter id be the decimal integer representation of the parameter number.
    38  * 
    38  * 
    39  * A SQL structured type passed as an argument to a set method must be created
    39  * A SQL structured type passed as an argument to a set method must be created
    40  * by the same {@link Session} that the created the
    40  * by the same {@link Session} that the created the
    41  * {@link ParameterizedOperation}. If not {@link IllegalArgumentException} is
    41  * {@code ParameterizedOperation}. If not {@link IllegalArgumentException} is
    42  * thrown. A SQL structured type is one of
    42  * thrown. A SQL structured type is one of
    43  * {@link SqlArray}, {@link SqlBlob}, {@link SqlClob}, {@link SqlRef} or
    43  * {@link SqlArray}, {@link SqlBlob}, {@link SqlClob}, {@link SqlRef} or
    44  * {@link SqlStruct}. This limitation holds recursively for all components of
    44  * {@link SqlStruct}. This limitation holds recursively for all components of
    45  * a SQL structured type. An implementation may relax this constraint.
    45  * a SQL structured type. An implementation may relax this constraint.
    46  *
    46  *