src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/ParameterizedOperation.java
branchJDK-8188051-branch
changeset 56824 62e92191354d
parent 56797 fb523d4d9185
child 56997 c9cbac2979fb
equal deleted inserted replaced
56823:6ba0dbf6a75f 56824:62e92191354d
    35  * For positional parameters, those where all parameters are indicated by the
    35  * For positional parameters, those where all parameters are indicated by the
    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 Connection} that the created the
    40  * by the same {@link Session} that the created the
    41  * {@link ParameterizedOperation}. If not {@link IllegalArgumentException} is
    41  * {@link 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.