@@ -3826,7 +3826,7 @@ like:
3826
3826
[subs="verbatim,quotes"]
3827
3827
----
3828
3828
new SqlParameter("in_id", Types.NUMERIC),
3829
- new SqlOutParameter("out_first_name", Types.VARCHAR),
3829
+ new SqlOutParameter("out_first_name", Types.VARCHAR),
3830
3830
----
3831
3831
3832
3832
The first line with the `SqlParameter` declares an IN parameter. IN parameters can be
@@ -4141,18 +4141,18 @@ constants.
4141
4141
[subs="verbatim,quotes"]
4142
4142
----
4143
4143
new SqlParameter("in_id", Types.NUMERIC),
4144
- new SqlOutParameter("out_first_name", Types.VARCHAR),
4144
+ new SqlOutParameter("out_first_name", Types.VARCHAR),
4145
4145
----
4146
4146
4147
4147
The first line with the `SqlParameter` declares an IN parameter. IN parameters can be
4148
4148
used for both stored procedure calls and for queries using the `SqlQuery` and its
4149
4149
subclasses covered in the following section.
4150
4150
4151
4151
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,
4153
4153
parameters that provide an `in` value to the procedure and that also return a value.
4154
4154
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
4156
4156
scale for numeric data or a type name for custom database types. For `out` parameters
4157
4157
you can provide a `RowMapper` to handle mapping of rows returned from a REF cursor.
4158
4158
Another option is to specify an `SqlReturnType` that enables you to define customized
0 commit comments