Remove extra backquote

master
nkjackzhang 6 years ago committed by Juergen Hoeller
parent be416ef9c4
commit e57d8e1e60
  1. 4
      src/docs/asciidoc/data-access.adoc

@ -4149,10 +4149,10 @@ used for both stored procedure calls and for queries using the `SqlQuery` and it
subclasses covered in the following section. subclasses covered in the following section.
The second line with the `SqlOutParameter` declares an `out` parameter to be used in the 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. 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 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. 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 Another option is to specify an `SqlReturnType` that enables you to define customized

Loading…
Cancel
Save