I have a multi record insert form that works fine with 10/15/20 records, but as soon as I have more records in the repeat, say 80, the multi updates happen up to a point and then returns an error 500 “ER_BAD_FIELD_ERROR”
When I limit the repeat to just the single record and insert that one alone there is no error.
So it tells me the data is not the problem but maybe an unknown limitation on the server connect multi insert maybe? A timeout? or record limit?
So after some trouble shooting I removed 1 field that did cause a error, and now the multi insert runs without any problems BUT it only inserts a maximum of 50 records every single time there are more than 50 items in the record repeat. The form and page shows all the items for insert, but the insert repeat stops after 50 record repeats.
Again my question is: Is there some sort of limit on record repeat with insert? I am not using paging in the query for the form data. The user also does not fill post of the fields as they are filled with a query on date select.
Been doing some troubleshooting to see if this is a Wappler bug or my bad logic.
When I do a count() of the records that is sent from the front end form using $_POST.record.count() it counts only 50 records and not the 70 or more I have in the repeat inside the form on the page.
Is there a way to remove this limit?
If it is a Wappler bug/limit would anyone suggest I try and break the form into 2 separate forms with groups of 50 in order to accommodate my insert?
This employers has more than 50 members that display in this row repeats with their values.
Everything inserts perfectly but only the forst 50 everytime there are more than 50 members.
This is my api action which first repeats the amount of weeks the contributions are captured for and then inside every week repeat, it repeats the members in the form repeat.
I have tested by removing the condition, which checks if the checkbox to include the member or not is indeed checked.
I have also tested by removing the week repeat and jsut capturing for 1 week, which still stops at 50 record inserts.
The count on the page using {{view.serverconnectListMembers.data.queryMembers.count()}} shows 151 records/lines vs the 50 that is shown in the api action:
i am stuck with same issue for nodejs project. capped at 59 rows (form repeat). Seems cap is on sent rows received at server-side and does not look like it is the sever that is truncating. Same thing for both wappler local development and custom remote staging server.