I have a database table with three fields: ID (unique), Name, Phone. I also have a Table object in my form with these same fields. Assume that the database table has five rows with IDs 1 through 5.
I want to update those five rows using my Table object. I added five rows to the Table object with IDs 1 through 5, and added name and phone data. How do I update all five rows in my database with the five rows in the Table object?
I tried the creating an UPDATE database connection action and used the ID column as the Send Condition Parameters and Name and Phone as the Send Value Parameters. In my form, I added a Connect behavior, and used the "all rows" values from my table for the connection parameters. The problem is that only the first row in the Table object is updated in the database. What step am I missing?
