Skip to content

Commit e57d8e1

Browse files
nkjackzhangjhoeller
authored andcommitted
Remove extra backquote
1 parent be416ef commit e57d8e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: src/docs/asciidoc/data-access.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -3826,7 +3826,7 @@ like:
38263826
[subs="verbatim,quotes"]
38273827
----
38283828
new SqlParameter("in_id", Types.NUMERIC),
3829-
new SqlOutParameter("out_first_name", Types.VARCHAR),
3829+
new SqlOutParameter("out_first_name", Types.VARCHAR),
38303830
----
38313831

38323832
The first line with the `SqlParameter` declares an IN parameter. IN parameters can be
@@ -4141,18 +4141,18 @@ constants.
41414141
[subs="verbatim,quotes"]
41424142
----
41434143
new SqlParameter("in_id", Types.NUMERIC),
4144-
new SqlOutParameter("out_first_name", Types.VARCHAR),
4144+
new SqlOutParameter("out_first_name", Types.VARCHAR),
41454145
----
41464146

41474147
The first line with the `SqlParameter` declares an IN parameter. IN parameters can be
41484148
used for both stored procedure calls and for queries using the `SqlQuery` and its
41494149
subclasses covered in the following section.
41504150

41514151
The second line with the `SqlOutParameter` declares an `out` parameter to be used in the
4152-
stored procedure call. There is also an `SqlInOutParameter` for `I` `nOut` parameters,
4152+
stored procedure call. There is also an `SqlInOutParameter` for `InOut` parameters,
41534153
parameters that provide an `in` value to the procedure and that also return a value.
41544154

4155-
For `i` `n` parameters, in addition to the name and the SQL type, you can specify a
4155+
For `in` parameters, in addition to the name and the SQL type, you can specify a
41564156
scale for numeric data or a type name for custom database types. For `out` parameters
41574157
you can provide a `RowMapper` to handle mapping of rows returned from a REF cursor.
41584158
Another option is to specify an `SqlReturnType` that enables you to define customized

0 commit comments

Comments
 (0)