From e57d8e1e6032d58eb252deead7e3f42a7a994227 Mon Sep 17 00:00:00 2001 From: nkjackzhang Date: Tue, 29 May 2018 20:01:45 +0800 Subject: [PATCH] Remove extra backquote --- src/docs/asciidoc/data-access.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/docs/asciidoc/data-access.adoc b/src/docs/asciidoc/data-access.adoc index b451085d50..33d2fc02bf 100644 --- a/src/docs/asciidoc/data-access.adoc +++ b/src/docs/asciidoc/data-access.adoc @@ -3826,7 +3826,7 @@ like: [subs="verbatim,quotes"] ---- new SqlParameter("in_id", Types.NUMERIC), - new SqlOutParameter("out_first_name", Types.VARCHAR), + new SqlOutParameter("out_first_name", Types.VARCHAR), ---- The first line with the `SqlParameter` declares an IN parameter. IN parameters can be @@ -4141,7 +4141,7 @@ constants. [subs="verbatim,quotes"] ---- new SqlParameter("in_id", Types.NUMERIC), - new SqlOutParameter("out_first_name", Types.VARCHAR), + new SqlOutParameter("out_first_name", Types.VARCHAR), ---- The first line with the `SqlParameter` declares an IN parameter. IN parameters can be @@ -4149,10 +4149,10 @@ used for both stored procedure calls and for queries using the `SqlQuery` and it subclasses covered in the following section. The second line with the `SqlOutParameter` declares an `out` parameter to be used in the -stored procedure call. There is also an `SqlInOutParameter` for `I` `nOut` parameters, +stored procedure call. There is also an `SqlInOutParameter` for `InOut` parameters, parameters that provide an `in` value to the procedure and that also return a value. -For `i` `n` parameters, in addition to the name and the SQL type, you can specify a +For `in` parameters, in addition to the name and the SQL type, you can specify a scale for numeric data or a type name for custom database types. For `out` parameters you can provide a `RowMapper` to handle mapping of rows returned from a REF cursor. Another option is to specify an `SqlReturnType` that enables you to define customized