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
@@ -829,10 +828,8 @@ If the stored procedure or function does not return any data, the payload of the
829
828
_Required_.
830
829
831
830
832
-
<2> Limits the number of rows extracted per query.
833
-
Otherwise all rows are extracted into the outgoing message. _Optional_.
834
-
835
-
831
+
<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.
832
+
For example, stored procedures can return an update count value, even though your stored procedure declared only a single result parameter.
836
833
<3> If this attribute is set to `true`, then all results from a stored procedure call that don't have a corresponding `SqlOutParameter` declaration will be bypassed.
837
834
E.g. Stored Procedures may return an update count value, even though your Stored Procedure only declared a single result parameter.
838
835
The exact behavior depends on the used database.
@@ -841,13 +838,9 @@ Few developers will probably ever want to process update counts, thus the value
841
838
_Optional_.
842
839
843
840
844
-
<4> Indicates whether this procedure's return value should be included.
841
+
<3> Indicates whether this procedure's return value should be included.
845
842
Since _Spring Integration 3.0_. _Optional_.
846
843
847
-
NOTE: When you declare a Poller, you may notice the Poller's `max-messages-per-poll` attribute.
848
-
For information about how it relates to the `max-rows-per-poll` attribute of the _Stored Procedure Inbound Channel Adapter_, please see <<jdbc-max-rows-per-poll-versus-max-messages-per-poll>> for a thorough discussion.
849
-
The meaning of the attributes is the same as for the _JDBC Inbound Channel Adapter_.
0 commit comments