Need help for tiny db number of items

hello, i am using tiny db in my app to save values. I would like to add items for the recording. If I do, the problem: There is going to be an error loading because the item count does not match. Do you have a solution for this? when you add more data to back up compared to a tiny db that contains less on the previous version of the application?





blocks(5)
blocks(6)

You are Member of the community(not a basic user/user), you must know the rules of community… English is official language. Please edit that with translated shots…

@Daniel_Pelissier , please :

To make it easier for any user to help you, more quickly, show your blocks in English.:+1:

1 Like

ok, sorry,
i made a simple exemple with 5 items
so, how should i do to add 3 more items using tiny db with with 5 items without errors when i want to read it ?
thanks
blocks(1)
blocks(2)
blocks(3)


blocks(5)

blocks(7)

blocks(9)

1 Like

Maybe use append to list block

image

should you show it to me on my exemple please ?

this is my test aia file

test.aia (7.5 KB)

Please describe what exactly you wish to do.

there are 5 items in tiny db wich are recorded.
if i build an update of the application with 7 items, the old tiny db with 5 items is going to give an error.
so, how to read the old 5 tiny db in a new wich is 7…without error?

use an if statement…
if length of list > 5 then display item 6 and 7

Taifun