@@ -171,7 +171,8 @@ public static ResultPackage getResultPackage(QueryAPI query, Object... queryArgs
171171 * @param resultType desired result type (see TYPES above)
172172 * @param query query object to execute
173173 * @param queryArgs replacement values for query place-holders
174- * @return for update operations, the number of rows affected; for query operations, an object of the indicated type<br>
174+ * @return for update operations, the number of rows affected; for query operations, an object of the indicated type
175+ * <p>
175176 * <b>NOTE</b>: If you specify {@link ResultPackage} as the result type, it's recommended that you close this object
176177 * when you're done with it to free up database and JDBC resources that were allocated for it.
177178 */
@@ -210,7 +211,8 @@ private static <T> T executeQuery(Class<T> resultType, QueryAPI query, Object...
210211 * @param connectionStr database connection string
211212 * @param queryStr a SQL statement that may contain one or more '?' IN parameter placeholders
212213 * @param params an array of objects containing the input parameter values
213- * @return for update operations, the number of rows affected; for query operations, an object of the indicated type<br>
214+ * @return for update operations, the number of rows affected; for query operations, an object of the indicated type
215+ * <p>
214216 * <b>NOTE</b>: If you specify {@link ResultPackage} as the result type, it's recommended that you close this object
215217 * when you're done with it to free up database and JDBC resources that were allocated for it.
216218 */
@@ -311,7 +313,8 @@ public static ResultPackage getResultPackage(SProcAPI sproc, Object... params) {
311313 * @param resultType desired result type (see TYPES above)
312314 * @param sproc stored procedure object to execute
313315 * @param params an array of objects containing the input parameter values
314- * @return an object of the indicated type<br>
316+ * @return an object of the indicated type
317+ * <p>
315318 * <b>NOTE</b>: If you specify {@link ResultPackage} as the result type, it's recommended that you close this object
316319 * when you're done with it to free up database and JDBC resources that were allocated for it.
317320 */
@@ -415,7 +418,8 @@ public static <T> T executeStoredProcedure(Class<T> resultType, SProcAPI sproc,
415418 * @param connectionStr database connection string
416419 * @param sprocName name of the stored procedure to be executed
417420 * @param params an array of objects containing the input parameter values
418- * @return an object of the indicated type<br>
421+ * @return an object of the indicated type
422+ * <p>
419423 * <b>NOTE</b>: If you specify {@link ResultPackage} as the result type, it's recommended that you close this object
420424 * when you're done with it to free up database and JDBC resources that were allocated for it.
421425 */
@@ -463,7 +467,8 @@ public static <T> T executeStoredProcedure(Class<T> resultType, String connectio
463467 * @param resultType desired result type (see TYPES above)
464468 * @param connectionStr database connection string
465469 * @param statement prepared statement to be executed (query or store procedure)
466- * @return for update operations, the number of rows affected; for query operations, an object of the indicated type<br>
470+ * @return for update operations, the number of rows affected; for query operations, an object of the indicated type
471+ * <p>
467472 * <b>NOTE</b>: If you specify {@link ResultPackage} as the result type, it's recommended that you close this object
468473 * when you're done with it to free up database and JDBC resources that were allocated for it.
469474 */
0 commit comments