< prev index next >

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

Print this page

        

*** 88,98 **** * @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 * @see XAConnectionBuilder */ default XAConnectionBuilder createXAConnectionBuilder() throws SQLException { throw new SQLFeatureNotSupportedException("createXAConnectionBuilder not implemented"); }; --- 88,98 ---- * @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 9 * @see XAConnectionBuilder */ default XAConnectionBuilder createXAConnectionBuilder() throws SQLException { throw new SQLFeatureNotSupportedException("createXAConnectionBuilder not implemented"); };
*** 102,112 **** * @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 * @see ShardingKeyBuilder */ default ShardingKeyBuilder createShardingKeyBuilder() throws SQLException { throw new SQLFeatureNotSupportedException("createShardingKeyBuilder not implemented"); --- 102,112 ---- * @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 9 * @see ShardingKeyBuilder */ default ShardingKeyBuilder createShardingKeyBuilder() throws SQLException { throw new SQLFeatureNotSupportedException("createShardingKeyBuilder not implemented");
< prev index next >