Skip to content

Commit aac4051

Browse files
committed
1 parent 0dcbde0 commit aac4051

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

src/reference/asciidoc/jdbc.adoc

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -805,9 +805,8 @@ The following listing calls out the attributes that matter for a stored procedur
805805
id=""
806806
ignore-column-meta-data="false"
807807
is-function="false"
808-
max-rows="" <2>
809-
skip-undeclared-results="" <3>
810-
return-value-required="false" <4>
808+
skip-undeclared-results="" <2>
809+
return-value-required="false" <3>
811810
<int:poller/>
812811
<int-jdbc:sql-parameter-definition name="" direction="IN"
813812
type="STRING"
@@ -821,24 +820,17 @@ The following listing calls out the attributes that matter for a stored procedur
821820
<1> Channel to which polled messages are sent.
822821
If the stored procedure or function does not return any data, the payload of the `Message` is null.
823822
Required.
824-
<2> Limits the number of rows extracted per query.
825-
Otherwise, all rows are extracted into the outgoing message.
826-
Optional.
827-
<3> If this attribute is set to `true`, all results from a stored procedure call that do not have a corresponding `SqlOutParameter` declaration are bypassed.
823+
<2> If this attribute is set to `true`, all results from a stored procedure call that do not have a corresponding `SqlOutParameter` declaration are bypassed.
828824
For example, stored procedures can return an update count value, even though your stored procedure declared only a single result parameter.
829825
The exact behavior depends on the used database.
830826
The value is set on the underlying `JdbcTemplate`.
831827
The value defaults to `true`.
832828
Optional.
833-
<4> Indicates whether this procedure's return value should be included.
829+
<3> Indicates whether this procedure's return value should be included.
834830
Since Spring Integration 3.0.
835831
Optional.
836832
====
837833

838-
NOTE: When you declare a poller, you may notice the poller's `max-messages-per-poll` attribute.
839-
For information about how it relates to the `max-rows` attribute of the stored procedure inbound channel adapter, see "`<<jdbc-max-rows-versus-max-messages-per-poll>>`".
840-
The meaning of the attributes is the same as for the JDBC inbound channel adapter.
841-
842834
[[stored-procedure-outbound-channel-adapter]]
843835
==== Stored Procedure Outbound Channel Adapter
844836

0 commit comments

Comments
 (0)