You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -821,24 +820,17 @@ The following listing calls out the attributes that matter for a stored procedur
821
820
<1> Channel to which polled messages are sent.
822
821
If the stored procedure or function does not return any data, the payload of the `Message` is null.
823
822
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.
828
824
For example, stored procedures can return an update count value, even though your stored procedure declared only a single result parameter.
829
825
The exact behavior depends on the used database.
830
826
The value is set on the underlying `JdbcTemplate`.
831
827
The value defaults to `true`.
832
828
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.
834
830
Since Spring Integration 3.0.
835
831
Optional.
836
832
====
837
833
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.
0 commit comments