How can we use “Maximum row” property in JDBC adapters?
Suppose we have 100 rows in a table and I want to use 10 rows at a time for some processing, I will mention the count under “Maximum row=10”. how do I implement loop mechanism in such case?
What input values do I need to pass into loop input? And how to iterate between the resultant rows until all the rows are fetched?
Thanks.