Actively connecting and updating Airtable

We found some topics similar to this, but none have fully answered our question.
We are using Airtable in our app and we are able to display values in the table on our screen, but whenever we make a change to the table that we are using, we have to re-download the API key and makes a correct copy to our app. We also can not update the value in Airtable. We think this might be because we are trying to add a value from a text input to a value in our table but we have tried different variations without the text input and it still didn’t work.
Original code:

1 Like

When you do any change in the table structure/definition then you need to re-synch the table from the My Data Sources tab

You need to understand that most of the database methods are working in asynchronous mode which means the code will continue to the next block and not wait for the database to update and therefore you could face the situation that an update your app made is not reflected but when you exit the app and come back again you would see the update value.

1 Like

Thank you! Your suggestion helped!

1 Like