diff --git a/jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/package.html b/jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/package.html index e52d3c9ec99..12ee65c9b8e 100644 --- a/jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/package.html +++ b/jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/package.html @@ -177,13 +177,13 @@ abstract class provides.
BaseRowSet
RowSet
command and
property values. Refer to the documentation of the javax.sql.RowSet
@@ -191,7 +191,7 @@ interface (available in the JDBC 3.0 specification) for more details on
the standard RowSet
properties.javax.sql.RowSetEvent
interface (available in the JDBC 3.0 specification) for
@@ -199,12 +199,12 @@ more details on how to register and handle standard RowSet events generated
by compliant implementations.+ * * @apiNote * This method is to be used by Connection pooling managers. *
diff --git a/jdk/src/java.sql/share/classes/java/sql/DriverManager.java b/jdk/src/java.sql/share/classes/java/sql/DriverManager.java index 6c4f68a58b8..2399b596d8f 100644 --- a/jdk/src/java.sql/share/classes/java/sql/DriverManager.java +++ b/jdk/src/java.sql/share/classes/java/sql/DriverManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -63,7 +63,6 @@ import jdk.internal.reflect.Reflection; * via the {@linkplain ServiceLoader#load service-provider loading} mechanism. * * - *
* @implNote * {@code DriverManager} initialization is done lazily and looks up service * providers using the thread context class loader. The drivers loaded and diff --git a/jdk/src/java.sql/share/classes/java/sql/SQLPermission.java b/jdk/src/java.sql/share/classes/java/sql/SQLPermission.java index 9907b98cc0d..dbdfb50efa0 100644 --- a/jdk/src/java.sql/share/classes/java/sql/SQLPermission.java +++ b/jdk/src/java.sql/share/classes/java/sql/SQLPermission.java @@ -62,29 +62,29 @@ import java.security.*; *
* *Connection
* will wait for the database to reply to any one request.- *+ *
*
diff --git a/jdk/src/java.sql/share/classes/javax/sql/package.html b/jdk/src/java.sql/share/classes/javax/sql/package.html index 75cb739d7cf..8ee4c44913b 100644 --- a/jdk/src/java.sql/share/classes/javax/sql/package.html +++ b/jdk/src/java.sql/share/classes/javax/sql/package.html @@ -280,7 +280,6 @@ generally, a writer will do the following: TheExamples of the conversion: * - *+ * Value Result * * - * Value Result - * Hello 'Hello' - * G'Day 'G''Day' 'G''Day' + *+ * Hello 'Hello' + * G'Day 'G''Day' - * 'G''Day' *'''G''''Day''' I'''M 'I''''''M' + ** * @@ -1454,48 +1454,48 @@ public interface Statement extends Wrapper, AutoCloseable { * I'''M 'I''''''M' *Examples of the conversion: * *- * + *identifier - *alwaysQuote - *Result identifier + *alwaysQuote + *Result * * *- * *Hello + *Hello *false *Hello *- * *Hello + *Hello *true *"Hello" *- * *G'Day + *G'Day *false *"G'Day" *- * *"Bruce Wayne" + *"Bruce Wayne" *false *"Bruce Wayne" *- * *"Bruce Wayne" + *"Bruce Wayne" *true *"Bruce Wayne" *- * *GoodDay$ + *GoodDay$ *false *"GoodDay$" *- * *Hello"World + *Hello"World *false *SQLException *- * @@ -1554,33 +1554,33 @@ public interface Statement extends Wrapper, AutoCloseable { *"Hello"World" + *"Hello"World" *false *SQLException *Examples of the conversion: * *- * * * *identifier - *Simple Identifier + *identifier + *Simple Identifier *- * *Hello + *Hello *true *- * *G'Day + *G'Day *false *- * *"Bruce Wayne" + *"Bruce Wayne" *false *- * *GoodDay$ + *GoodDay$ *false *- * *Hello"World + *Hello"World *false *- * * @@ -1613,17 +1613,17 @@ public interface Statement extends Wrapper, AutoCloseable { *"Hello"World" + *"Hello"World" *false *Examples of the conversion: * *- * * * - *Value - *Result + *Value + *Result *- * Hello N'Hello' - * G'Day N'G''Day' 'G''Day' + *+ * Hello N'Hello' + * G'Day N'G''Day' - * 'G''Day' *N'''G''''Day''' I'''M N'I''''''M' - *+ * N'Hello' N'N''Hello''' I'''M N'I''''''M' + ** * * N'Hello' N'N''Hello''' RowSet
interface may be implemented in any number of ways, and anyone may write an implementation. Developers are encouraged to use their imaginations in coming up with new ways to use rowsets. -
Package Specification