< prev index next >

jdk/src/java.sql/share/classes/javax/sql/DataSource.java

Print this page

        

@@ -117,11 +117,11 @@
    * @implSpec
    * The default implementation will throw a {@code SQLFeatureNotSupportedException}
    * @return The ConnectionBuilder instance that was created
    * @throws SQLException if an error occurs creating the builder
    * @throws SQLFeatureNotSupportedException if the driver does not support sharding
-   * @since 1.9
+   * @since 9
    * @see createConnectionBuilder
    */
   default ConnectionBuilder createConnectionBuilder() throws SQLException {
         throw new SQLFeatureNotSupportedException("createConnectionBuilder not implemented");
   };

@@ -131,11 +131,11 @@
    * @implSpec
    * The default implementation will throw a {@code SQLFeatureNotSupportedException}
    * @return The ShardingKeyBuilder instance that was created
    * @throws SQLException if an error occurs creating the builder
    * @throws SQLFeatureNotSupportedException if the driver does not support this method
-   * @since 1.9
+   * @since 9
    * @see ShardingKeyBuilder
    */
   default ShardingKeyBuilder  createShardingKeyBuilder()
           throws SQLException {
         throw new SQLFeatureNotSupportedException("createShardingKeyBuilder not implemented");
< prev index next >